Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save theindianappguy/f58954f9c978d6c48c23f3dbf96cce3f to your computer and use it in GitHub Desktop.

Select an option

Save theindianappguy/f58954f9c978d6c48c23f3dbf96cce3f to your computer and use it in GitHub Desktop.
Container(
height: 80,
child: ListView.builder(
padding: EdgeInsets.symmetric(horizontal: 24),
itemCount: categories.length,
shrinkWrap: true,
scrollDirection: Axis.horizontal,
itemBuilder: (context, index) {
/// Create List Item tile
return CategoriesTile(
imgUrls: categories[index].imgUrl,
categorie: categories[index].categorieName,
);
}),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment