如何在Table中对齐文本?

从左到第一列(ID),从右到第二列(Value)。

    child: Table(
                        children: [
                          TableRow(children: [
                            TableCell(
                              child: Row(
                                mainAxisAlignment:
                                MainAxisAlignment.spaceAround,
                                children: <Widget>[
                                  new Text('ID'),
                                  new Text('Value'),
                                ],
                              ),
                            )
                          ]),

最佳答案

您可以使用mainAxisAlignment:MainAxisAlignment.spaceBetween代替MainAxisAlignment.spaceAround

关于dart - Flutter-对齐表格中的文字,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55373687/

10-11 01:16