The Webfeed Flutter package for Appeto SDK.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Wito Chandra 04f276605f
Merge branch 'master' into parse_null_or_empty
5 anos atrás
.github/workflows Create dart.yml 6 anos atrás
example refactor null safety migration 5 anos atrás
lib Merge branch 'master' into parse_null_or_empty 5 anos atrás
test Merge branch 'master' into parse_null_or_empty 5 anos atrás
.gitignore migration to null safety dart 2.0 5 anos atrás
.travis.yml integrate travis ci 8 anos atrás
CHANGELOG.md add changelog 6 anos atrás
LICENSE Initial commit 8 anos atrás
README.md bump version 6 anos atrás
analysis_options.yaml apply prefer_single_quotes rule 6 anos atrás
pubspec.yaml migration to null safety dart 2.0 5 anos atrás

README.md

WebFeed

Build Status Pub

A dart package for parsing RSS and Atom feed.

Features

Installing

Add this line into your pubspec.yaml

webfeed: ^0.6.0

Import the package into your dart code using:

import 'package:webfeed/webfeed.dart';

Example

To parse string into RssFeed object use:

var rssFeed = RssFeed.parse(xmlString); // for parsing RSS feed
var atomFeed = AtomFeed.parse(xmlString); // for parsing Atom feed

Preview

RSS

feed.title
feed.description
feed.link
feed.author
feed.items
feed.image
feed.cloud
feed.categories
feed.skipDays
feed.skipHours
feed.lastBuildDate
feed.language
feed.generator
feed.copyright
feed.docs
feed.managingEditor
feed.rating
feed.webMaster
feed.ttl
feed.dc

RssItem item = feed.items.first;
item.title
item.description
item.link
item.categories
item.guid
item.pubDate
item.author
item.comments
item.source
item.media
item.enclosure
item.dc

Atom

feed.id
feed.title
feed.updated
feed.items
feed.links
feed.authors
feed.contributors
feed.categories
feed.generator
feed.icon
feed.logo
feed.rights
feed.subtitle

AtomItem item = feed.items.first;
item.id
item.title
item.updated
item.authors
item.links
item.categories
item.contributors
item.source
item.published
item.content
item.summary
item.rights
item.media

License

WebFeed is licensed under the MIT License - see the LICENSE.md file for details