如何为两个文本元素创建从左上角到右下角的动画[关闭]

问题描述 投票:0回答:1

我正在制作一个从左上角开始移动到右下角的动画。我需要有关为两个不同文本元素编码此效果的指导。任何见解或代码片段将不胜感激。

flutter flutter-animation
1个回答
-1
投票
AnimatedTextKit( 
                animatedTexts: [ 
                RotateAnimatedText('AWESOME', 
                    textStyle: TextStyle( 
                        fontSize: 30, 
                        color: Colors.white, 
                        backgroundColor: Colors.blue)), 
                RotateAnimatedText('OPTIMISTIC', 
                    textStyle: TextStyle( 
                        letterSpacing: 3, 
                        fontSize: 30, 
                        fontWeight: FontWeight.bold, 
                        color: Colors.orange)), 
                RotateAnimatedText( 
                    'DIFFERENT', 
                    textStyle: TextStyle( 
                    fontSize: 30, 
                    decoration: TextDecoration.underline, 
                    ), 
                ), 
                ], 
                isRepeatingAnimation: true, 
                totalRepeatCount: 10, 
                pause: Duration(milliseconds: 1000), 
            ),
© www.soinside.com 2019 - 2024. All rights reserved.