The Webfeed Flutter package for Appeto SDK.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Wito Chandra 365dc3d45c add atom support 8 лет назад
example update example 8 лет назад
lib add atom support 8 лет назад
test add atom support 8 лет назад
.gitignore simple rss client 8 лет назад
.travis.yml integrate travis ci 8 лет назад
LICENSE Initial commit 8 лет назад
README.md edit README.md 8 лет назад
pubspec.yaml add homepage & environment 8 лет назад

README.md

WebFeed

Build Status

A dart package for parsing RSS feed.

Features

Installing

Add this line into your pubspec.yaml

webfeed: ^0.1.0

Import the package into your dart code using:

import 'package:webfeed/domain/rss_feed.dart';

Example

To parse string into RssFeed object use:

new RssFeed.parse(xmlString);

Preview

RSS

feed.title
feed.description
feed.link
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

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

License

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