polinews
a news app specifically for politics.
feature | technology |
---|---|
app & ui | flutter |
get the news (preview w/ title) | rss |
view the articles | webview |
why rss
rss is a simple way of accessing information published by news outlets like the new yorkt times, nzz and many other. accessing an rss feed is simple and not overly complicated. it is easy to store the news in a data structure and therefor parsing the information to a listview.builder
in flutter.
why webview
since the news outlets only provide titles and quick teasers in the rss feeds, accessing the article is done through a web browser. to provide a more seamless expierence, we use a webview to present the article in-app.
getting started
what software you need
- git or github desktop for sharing code and keeping track of features
- gitkraken for a visual representation of commits
- code editor (ide)
- visual studio code
- android studio or jetbrains intellij (community edition – free)
- flutter by google
- cookbook by google for flutter tutorials
widgets and features
- futurebuilder
- the futurebuilder shows content as soon as a function returns it (simplified)
- tutorial by the google developer youtube channel
- tutorial for listviews by the flutter youtube channel
- customscrollview
- the customscrollview provides more options to customize the ui
- tutorial for sliverappbars by the google developer youtube channel
- listtile
plugins
- webfeed
- the webfeed plugin allows flutter to parse (to process) information from a rss feed
- webview
Comments are closed.