Guest User

Untitled

a guest
Sep 4th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Widget _getListCategory(){
  2.  
  3. ListView listCategory = new ListView.builder(
  4. itemCount: _categorys.length,
  5. scrollDirection: Axis.horizontal,
  6. itemBuilder: (context, index){
  7. return _buildCategoryItem(index);
  8. }
  9. );
  10.  
  11. return new Container(
  12. height: 55.0,
  13. child: listCategory,
  14. );
  15.  
  16. }
Add Comment
Please, Sign In to add comment