Skip to content

Instantly share code, notes, and snippets.

@Nash0x7E2
Created September 27, 2018 00:11
Show Gist options
  • Save Nash0x7E2/d00775708675dad089b75002b2aa082c to your computer and use it in GitHub Desktop.
Save Nash0x7E2/d00775708675dad089b75002b2aa082c to your computer and use it in GitHub Desktop.
void addUser() {
int index = listData.length;
listData.add(
UserModel(
firstName: "Norbert",
lastName: "Kozsir",
profileImageUrl:
"https://pbs.twimg.com/profile_images/970033173013958656/Oz3SLVat_400x400.jpg",
),
);
_listKey.currentState
.insertItem(index, duration: Duration(milliseconds: 500));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment