textDirection!= null断言不为null ListTile

时间:2018-12-07 20:37:53

标签: flutter

ListTile小部件中使用Material时,颤动的应用会停留在错误消息"Failed assertion: line 507 pos 15 'textDirection != null' assert is not true"上。但是ListItem小部件没有任何属性为textDirection。我该如何解决?

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:2)

我看到了错误,当您没有MaterialAppCupertinoApp作为初始窗口小部件时,会发生此错误,建议您创建一个新项目,并查看Flutter如何创建{{1} }。

要解决您的问题:

Widgets

return MaterialApp( home: Material( child: ListTile( ... ), ), ), 不是必需的

答案 1 :(得分:0)

我在Flex上遇到了同样的问题,并添加了direction: Axis.vertical为我解决了这个问题。