gpt4 book ai didi

Flutter 使 TableRow 占用剩余的可用空间

转载 作者:IT王子 更新时间:2023-10-29 06:57:38 26 4
gpt4 key购买 nike

我有一个包含 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
},
...
),

关于Flutter 使 TableRow 占用剩余的可用空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55459787/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com