颤振:对齐表儿童相互的身高

时间:2020-06-10 14:20:55

标签: flutter vertical-alignment tablerow

我如何让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],
                ),
              ],
            );
          }),
        );
      }),
    );
  }
}

外观

e

我希望它看起来如何

enter image description here

0 个答案:

没有答案