Ваши дети, вероятно, имеют запас.
Смотрите это.
GridView(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3,
mainAxisSpacing: 1,
crossAxisSpacing: 1,
),
children: List.generate(
20,
(index) => Container(
color: Colors.white,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Icon(Icons.touch_app, size: 30, color: Colors.yellow[900],),
SizedBox(height: 10,),
Text("Touch", style: TextStyle(fontSize: 20),)
],
),
),
),
),
Вывод: