我如何让TableRow
的孩子调整他们的身高以匹配他们的身高?
这是我的代码
class TestWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
final random = Random();
return Table(
children: List.generate(9, (index) {
return TableRow(
children: List.generate(2, (index2) {
return Stack(
children: <Widget>[
Container(
margin: const EdgeInsets.all(8.0),
child: Text('qwe ' * (random.nextInt(33) + 1)),
color: [Colors.cyanAccent, Colors.yellow][index2],
),
],
);
}),
);
}),
);
}
}
外观
我希望它看起来如何