志在巅峰的攀登者,不会陶醉在沿途的某个脚印之中,在码农的世界里,优美的应用体验,来源于程序员对细节的处理以及自我要求的境界,年轻人也是忙忙碌碌的码农中一员,每天、每周,都会留下一些脚印,就是这些创作的内容,有一种执着,就是不知为什么,如果你迷茫,不妨来瞅瞅码农的轨迹。
如果你有兴趣 你可以关注一下公众号 biglead 来获取最新的学习资料。
Flutter 用来快速开发 Android iOS平台应用,在Flutter 中,通过 ColorTween 来实现颜色过渡动画效果
程序入口
main() {
runApp(MaterialApp(
debugShowCheckedModeBanner: false,
home: DemoColorTweenPage(),
));
}
Demo 实例页面
class DemoColorTweenPage extends StatefulWidget {
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<DemoColorTweenPage>
with SingleTickerProviderStateMixin {
late AnimationController _animationController;
late Animation _animation;
@override
void initState() {
super.initState();
_animationController = new AnimationController(
vsync: this,
duration: Duration(milliseconds: 1000),
);
_animationController.addListener(() {
setState(() {});
});
_animationController.addStatusListener((status) {
AnimationStatus status = _animationController.status;
if (status == AnimationStatus.completed) {
_animationController.reverse();
} else if (status == AnimationStatus.dismissed) {
_animationController.forward();
}
});
_animation = ColorTween(begin: Colors.blue, end: Colors.red)
.animate(_animationController);
Future.delayed(Duration.zero, () {
_animationController.forward();
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Tween")),
body: Center(
child: Container(
width: 200,
height: 200,
color: _animation.value,
),
),
);
}
}
|