fetch_rss

Last updated:

0 purchases

fetch_rss Image
fetch_rss Images
Add to Cart

Description:

fetch rss

Fetch RSS #
This project is a Flutter package developed in Dart that allows you to retrieve a RSS feed and parse it into an object.
How to use #
To use this package, you will need to import it in your Flutter project:
import 'package:fetch_rss/src/models/youtube_rss_model.dart';
copied to clipboard
Then, you can retrieve the RSS feed for a specific Youtube channel by calling the fetch method and passing in the channel's id:
static String channelId = "YOUR_CHANNEL_ID";
YoutubeRSSModel model = await FetchRSSYoutube.fetch(channelId);
copied to clipboard
The fetch method returns a YoutubeRSSModel object that contains all the information from the RSS feed, including the channel's title, description, and a list of video items.
Example #
Here is an example of how you could use the fetch method to retrieve and display the channel's title and more in your Flutter app:
YoutubeRSSModel model = await FetchRSSYoutube.fetch(channelId);

Text(model.channelTitle),
copied to clipboard
You can also iterate through the list of video items to display them in your app:
ListView.builder(
itemCount: model.videos.length,
itemBuilder: (context, index) {
return Text(model.videos[index].title);
},
)
copied to clipboard
Contributions #
If you would like to contribute to this project, please feel free to submit a pull request. We welcome all contributions and suggestions.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.