gpt4 book ai didi

带有 Tiles 的 ListView 在 Flutter 中不起作用

转载 作者:IT王子 更新时间:2023-10-29 06:54:16 24 4
gpt4 key购买 nike

为什么我的 ListView 没有显示预期的图 block ?

class DepartureCell extends StatelessWidget {

@override
Widget build(BuildContext context) {
return ListView.builder(
itemCount: 20,
itemBuilder: (BuildContext context, int index) {
return ListTile(
title: new Text("Test"),
onTap: () {},
);
}
);
}
}

错误说:

flutter: ══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY ╞═════════════════════════════════════════════════════════
flutter: The following assertion was thrown during performResize():
flutter: Vertical viewport was given unbounded height.
flutter: Viewports expand in the scrolling direction to fill their container.In this case, a vertical
flutter: viewport was given an unlimited amount of vertical space in which to expand. This situation
flutter: typically happens when a scrollable widget is nested inside another scrollable widget.
flutter: If this widget is always nested in a scrollable widget there is no need to use a viewport because
flutter: there will always be enough vertical space for the children. In this case, consider using a Column
flutter: instead. Otherwise, consider using the "shrinkWrap" property (or a ShrinkWrappingViewport) to size
flutter: the height of the viewport to the sum of the heights of its children.

由于 unbound height 有问题,我还尝试了以下操作:

代码也不起作用:

class DepartureCell extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ListView.builder(
itemCount: 20,
itemBuilder: (BuildContext context, int index) {
return SizedBox(
width: double.infinity,
height: 40.0,
child: ListTile(
title: Text("Test"),
onTap: () {},
trailing: Text("Test"),
),
);
}
);
}
}

我怎样才能让它在 Flutter 中工作???

我也尝试过 Column - 但同样的事情......不起作用!

这里的列代码再次不起作用:

class DepartureCell extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Column(
children: <Widget>[
ListView.builder(
padding: EdgeInsets.all(0.0),
itemCount: 10,
itemBuilder: (BuildContext context, int position) {
return SizedBox(
width: double.infinity,
height: 40.0,
child:ListTile(
title: Text("Test"),
onTap: () {},
trailing: Text("Test"),
),
);
}
),
]
);
}
}

最佳答案

我不知道你之前的代码是什么。如果您可以发布您的早期代码,我可以向您解释异常(exception)情况。

这是代码的简化版本。

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text("CH Station Demo"),
),
body: DepartureCell()),
//home: TrackerApp(),
);
}
}

class DepartureCell extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ListView.builder(
padding: EdgeInsets.all(8.0),
itemCount: 10,
itemBuilder: (context, index) {
return ListTile(
title: Text("Test"),
onTap: () {},
trailing: Text("Test2"),
);
});
}
}

关于带有 Tiles 的 ListView 在 Flutter 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53895366/

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