flutter_cached
flutter_cached copied to clipboard
🧾 Flutter widget allowing easy cache-based data display in a ListView featuring pull-to-refresh and error banners.
With your current implementation, it seems that if I have a ListView inside a Column for instance (with a footer), the pull-to-refresh doesn't work. ``` Column( children: [ Expanded( child:...
As @marcelgarus already said in https://github.com/marcelgarus/flutter_cached/issues/5#issuecomment-598095137: > Actually, the current behavior is somewhat intended as a temporary behavior. In the long term, I was thinking about implementing multiple caching strategies...
Use case: In the [Schul-Cloud App](https://github.com/schul-cloud/schulcloud-flutter) we want to show a card on the dashboard displaying only the three most recent news entries. We could limit the returned list on...