У меня есть столбец с 3 строками. Как я могу удалить пространство между строками?
Это мой код:
Widget _buildTable() {
return Column(
children: [
Row(
children: _getBtns(),
),
Row(
children: _getBtns(),
),
Row(
children: _getBtns(),
),
]);
}
List<Widget> _getBtns() {
final result = <Widget>[];
for (int i = 0; i < 7; i++) {
result.add(
Expanded(
child: RaisedButton(color: Colors.green, onPressed: () {}),
),
);
}
return result;
}
Вот что я хотел бы получить: