Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Widget _getListCategory(){
- ListView listCategory = new ListView.builder(
- itemCount: _categorys.length,
- scrollDirection: Axis.horizontal,
- itemBuilder: (context, index){
- return _buildCategoryItem(index);
- }
- );
- return new Container(
- height: 55.0,
- child: listCategory,
- );
- }
Add Comment
Please, Sign In to add comment