-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
565: Refactor news by extracting api, loading and error handling #519
base: main
Are you sure you want to change the base?
Conversation
), | ||
], | ||
), | ||
return FutureLoadingScreen<NewsModel?>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No changes except usage of FutureLoadingScreen
instead of duplicated logic
return NewsCard(news: items[index]); | ||
}, | ||
); | ||
return FutureLoadingScreen( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No changes except usage of FutureLoadingScreen
instead of duplicated logic
5b01d14
to
f81151e
Compare
f81151e
to
aa90ed8
Compare
567: Hide bookmarks until implemented
@steffenkleinle ❌ There are some small layout issues: |
Short description
Refactor news by extracting api, loading and error handling.
Proposed changes
FutureLoadingScreen
ErrorScreen
Side effects
N/A
Testing
Test the news list and single news, reloading, being offline and opening news and by manually throwing errors.
Resolved issues
Fixes: N/A
Additional information
Fixes: #565
#504 still persists