我正在学习 Flutter,我遇到了这种错误。
我试图通过寻找一些相同的情况来解决这个问题,但我还没有找到。 好像是和Null-safety有关,不知道怎么解决。
如果你知道什么,请给我任何建议
class _MyHomePageState extends State<MyHomePage> with TickerProviderStateMixin {
late AnimationController _animationControler;
_play() async {
setState(() {
_animationControler.forward();
});
}
_stop() async {
setState(() {
_animationControler.stop();
});
}
_reverse() async {
setState(() {
_animationControler.reverse();
});
}
@override
void initState() {
super.initState();
_animationControler =
AnimationController(vsync: this, duration: Duration(seconds: 3));
}
@override
void dispose() {
_animationControler.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title!),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
SizeTransition(
sizeFactor: _animationControler,
child: Center(
child: SizedBox(
width: 50,
height: 50,
child: Container(color: Colors.green))),
),
],
),
),
floatingActionButton:
Row(mainAxisAlignment: MainAxisAlignment.center, children: [
FloatingActionButton(
onPressed: _play, child: Icon(Icons.arrow_forward)),
FloatingActionButton(onPressed: _stop, child: Icon(Icons.pause)),
FloatingActionButton(
onPressed: _reverse, child: Icon(Icons.arrow_back)),
]),
);
}
}
谢谢。
答案 0 :(得分:0)
正如好心人告诉我的那样,彻底清理或重新启动该项目对我有用。谢谢这么多好心人。