flutter colortween1 [Flutter] 색상 변경 애니메이션 적용하기 main.dart import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatefulWidget { const MyApp({Key? key}) : super(key: key); @override _MyAppState createState() => _MyAppState(); } class _MyAppState extends State with TickerProviderStateMixin { late AnimationController _controller; late Animation _tweenColor; @override void initState() { super.initState.. 2022. 5. 10. 이전 1 다음