我有一个有3行的表,IntrinsicColumnWidth
方法根据该列中所有单元格的内部维度设置列的大小。这意味着它们将采用尽可能小的宽度。这正是我想要的第一列和第二列。
我的问题是我怎样才能让第三排占到剩余的空间
Table(
columnWidths: {
0: IntrinsicColumnWidth(),
1: IntrinsicColumnWidth(),
2: IntrinsicColumnWidth(), // i want this one to take the rest available space
},
...
),
最佳答案
我知道现在很晚了,但是对于任何其他想要回答这个问题的人,你可以尝试下面的代码。
Table(
columnWidths: {
0: FlexColumnWidth(1.0),
1: FlexColumnWidth(1.0),
2: IntrinsicColumnWidth(), // i want this one to take the rest available space
},
...
),