尝试在标签栏中添加窗口小部件时出现此错误。请检查以下代码
X = X + 1
# [Finished in 0.707s]
对于Picmee文件:
return Scaffold(
appBar: new AppBar(
bottom: PreferredSize(
child: _tabBar,
preferredSize: Size.fromHeight(_tabBar.preferredSize.height - 50),
),
),
body: new TabBarView(
controller: _tabController,
children: <Widget>[
new PicMee(),
new PicMee()
],
),
);
我收到此错误:
颤振:引发了另一个异常:
'package:flutter / src / widgets / text.dart':失败的断言:第235行 pos 15:“ data!= null”:不正确。
答案 0 :(得分:1)
替换此行:
return new CustomWidget(date: null, content: null, trailingIconOne: null, trailingIconTwo: null)
对此:
return new CustomWidget(date: "date", content: "content", trailingIconOne: Icon(Icons.add), trailingIconTwo: Icon(Icons.add))