Last active
May 18, 2020 23:45
-
-
Save e200/723391dd6ab9005c56996d213f0447b3 to your computer and use it in GitHub Desktop.
Flutter infinite scroll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final List<Map<String, dynamic>> _posts = [ | |
{ | |
'id': 1, | |
'title': 'Foo', | |
'body': 'Lorem', | |
}, | |
{ | |
'id': 2, | |
'title': 'Bar', | |
'body': 'Ipsum', | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment