The Webfeed Flutter package for Appeto SDK.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 rivejä
297 B

  1. import 'package:http/http.dart' as http;
  2. import 'client.dart';
  3. void main() {
  4. var client = new WebFeedClient(new http.Client());
  5. client.fetch("https://developer.apple.com/news/releases/rss/releases.rss").then((channel) {
  6. print(channel);
  7. }).catchError((error) {
  8. print(error);
  9. });
  10. }