skip to Main Content

How to loop somepart of function in flutter?

I want to loop some part of function base on widget.menuItem.category.length, I am new in flutter. Here is my current code : _buildContentView({BuildContext context}) { return Column( crossAxisAlignment: CrossAxisAlignment.stretch, children: <Widget>[ _buildMenuItemImage(), Container( child: Text(widget.menuItem.name, style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold)),…

VIEW QUESTION
Back To Top
Search