The Webfeed Flutter package for Appeto SDK.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Wito Chandra 6e9d27b0b0 add homepage & environment 8年前
example move client into example 8年前
lib move client into example 8年前
test move client into example 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