代码报错,不理解
来源:7-6 动画Animation开发指南-AnimatedWidget与AnimatedBuilder-1【跟着做】
郎爽
2022-04-11
这里的 listenable 来自于哪里?
我全部按照这个代码敲下来,运行会报错:
A value of type ‘Listenable’ can’t be assigned to a variable of type ‘Animation’.
Try changing the type of the variable, or casting the right-hand type to ‘Animation’.
类型不相符
写回答
1回答
-
郎爽
提问者
2022-04-11
问题已解决,修改代码如下:
final Animation<double> animation = listenable as Animation<double>;
012022-04-12
相似问题