经过最新的颤振升级。当我离开应用程序进入主屏幕并返回时发生。此错误仅在红屏上显示几秒钟,然后恢复正常。
<块引用>您应该指定 itemBuilder 或颜色 '包:flutter_spinkit/src/chasing_dots.dart': 失败的断言:第 10 行 pos 16: '!(itemBuilder is IndexedWidgetBuilder && color is Color) && !(itemBuilder == null && color == null)'
我在我的代码中没有看到任何可能导致它的原因。颜色已指定。
class Loading extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
color: Colors.brown,
child: Center(
child: SpinKitChasingDots(
color: Colors.white,
size: 50.0,
)
),
);
}
}
只出现在模拟器上,而不出现在手机上。一定是画的东西。