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.
|
- import 'package:http/http.dart' as http;
- import 'package:webfeed/webfeed.dart';
-
- void main() {
- var client = new http.Client();
-
- // RSS feed
- client.get("https://developer.apple.com/news/releases/rss/releases.rss").then((response) {
- return response.body;
- }).then((bodyString) {
- var channel = new RssFeed.parse(bodyString);
- print(channel);
- return channel;
- });
-
- // Atom feed
- client.get("https://www.theverge.com/rss/index.xml").then((response) {
- return response.body;
- }).then((bodyString) {
- var feed = new AtomFeed.parse(bodyString);
- print(feed);
- return feed;
- });
- }
|