Skip to content

Instantly share code, notes, and snippets.

@SteveOye
Last active March 9, 2023 11:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SteveOye/c94d84799a488f1af0f810fd2e0bafef to your computer and use it in GitHub Desktop.
Save SteveOye/c94d84799a488f1af0f810fd2e0bafef to your computer and use it in GitHub Desktop.
//There are different ways to create listview, we will be using ListView.builder in this sample
ListView.builder(
itemCount: list.length//lengthOfListItem,
itemBuilder: (context, index) {
return ListItemWidget; //List item widget;
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment