Created
May 18, 2020 09:27
-
-
Save theindianappguy/f58954f9c978d6c48c23f3dbf96cce3f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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