Skip to content

Instantly share code, notes, and snippets.

@e200
Last active May 18, 2020 23:45
Show Gist options
  • Save e200/723391dd6ab9005c56996d213f0447b3 to your computer and use it in GitHub Desktop.
Save e200/723391dd6ab9005c56996d213f0447b3 to your computer and use it in GitHub Desktop.
Flutter infinite scroll
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