gpt4 book ai didi

android - 使用ListTile并获取异常:未布局RenderBox

转载 作者:行者123 更新时间:2023-12-03 04:59:39 24 4
gpt4 key购买 nike

我正在尝试在列和行中使用ListTile(),但是它引发了异常:

Exception caught by rendering library 
The following assertion was thrown during performLayout():
BoxConstraints forces an infinite width.

这是代码:
          Row(
children: <Widget>[
Column(
children: <Widget>[
Card()
],
),
Column(
children: <Widget>[
Card(
child: ListTile(),
)
],
)
],
),

我们该如何解决呢?

最佳答案

使用扩展的小部件

       Row(
children: <Widget>[
Column(
children: <Widget>[
Card()
],
),
Expanded(
child: Column(
children: <Widget>[
Card(
child: ListTile(),
)
],
),
)
],
),

关于android - 使用ListTile并获取异常:未布局RenderBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59788978/

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