小编Moh*_*agd的帖子

Flutter - 动画文本淡入淡出过渡

我想在两个文本上进行淡入淡出过渡,我的意思是通过动画从文本到另一个值的变化......例如一个..两个..并一次又一次地重复这个值

这就是我试图做的

Container(
        alignment: Alignment.center,
        width: 150,
        height: 50,
        child: FadeTransition(
          opacity: controller2,
          child: Text('Breathe in ',textDirection: TextDirection.ltr,style: TextStyle(color: Colors.white,fontSize: 30,),),
        ),
        color: Colors.red,


 ),
Run Code Online (Sandbox Code Playgroud)

我怎样才能做到这一点?

animation flutter

6
推荐指数
1
解决办法
6677
查看次数

标签 统计

animation ×1

flutter ×1