我的用例是:
列中有3个小部件:窗口小部件1和3是固定高度的,窗口小部件2将扩展可用内容。
Container(
height: 300, // h0: dynamic height
child: Column(
children: [
Container(
color: Colors.green,
width: 100, // h1: fixed height
height: 100,
),
Expanded(
child: Container(
color: Colors.red,
width: 100, // h2: fill remain content
child: Placeholder(),
),
),
Container(
color: Colors.blue,
width: 100, // h3: fixed height
height: 100,
),
],
),
)
- 当h 0〉h1 + h3时:
- 显示所有3个小部件-〉通过
- 当h 0〈h1 + h3时:
- 显示小部件1和3,展开的小部件将不可见-〉通过
- 如果溢出则剪切内容-〉失败内容未被剪切并显示警告底部溢出
我不能使用ScrollView,因为Expanded中的内容应该是灵活的,而ScrollView不支持这样的行为。
我可以使用ClipRect来剪切溢出内容,但警告底部溢出仍然存在。有没有办法消除警告?
2条答案
按热度按时间de90aj5v1#
尝试将
Column
Package 为SingleChildScrollView
:t3psigkw2#
你可以试试看: