The Webfeed Flutter package for Appeto SDK.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Wito Chandra 261617a757 add version, description, & author il y a 8 ans
example move client into example il y a 8 ans
lib move client into example il y a 8 ans
test move client into example il y a 8 ans
.gitignore simple rss client il y a 8 ans
.travis.yml integrate travis ci il y a 8 ans
LICENSE Initial commit il y a 8 ans
README.md Add README.md il y a 8 ans
pubspec.yaml add version, description, & author il y a 8 ans

README.md

WebFeed

Build Status

A dart package for parsing RSS feed.

Features

Installing

Add these lines into your pubspec.yaml

webfeed:
  git: git@github.com:witochandra/webfeed.git

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