Skip to content

Instantly share code, notes, and snippets.

@ibhavikmakwana
Created November 29, 2018 12:42
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 ibhavikmakwana/b7e0b33ee33c8c246a6f52a3bd9db8e4 to your computer and use it in GitHub Desktop.
Save ibhavikmakwana/b7e0b33ee33c8c246a6f52a3bd9db8e4 to your computer and use it in GitHub Desktop.
Simple flutter list view
ListView.builder(
itemCount: 20,
itemBuilder: (context, index) => Padding(
padding: EdgeInsets.all(8.0),
child: Center(child: Text("Index $index")),
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment