作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在按照本指南制作动画:https://mightytechno.com/flutter-glow-pulse-animation/
当我去使用this
时,它不会让我通过它。我无法编译并且 flutter clean 什么都不做。我可以传递什么对象来消除此错误?
void initState() {
getSharedPrefs();
_animationController = AnimationController(vsync: this, duration: Duration(seconds: 2));
_animationController.repeat(reverse: true);
_animation = Tween(begin: 2.0,end: 15.0).animate(_animationController)..addListener((){
setState(() {
});
});
最佳答案
扩展SingleTickerProviderStateMixin
修复了问题:
class Social4state extends State<UserProfilePage> with SingleTickerProviderStateMixin{
关于Flutter Animation Controller 参数类型 'ExampleWidget'或 'this'不能赋值给参数类型 'TickerProvider',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69878272/
我是一名优秀的程序员,十分优秀!