반응형
복붙임
class HomePageController extends GetxController
with GetSingleTickerProviderStateMixin {
final Duration duration = const Duration(milliseconds: 300);
AnimationController animationController;
@override
void onInit() {
super.onInit();
animationController = AnimationController(vsync: this, duration: duration);
}
}
class HomePage extends GetView
@override
Widget build(BuildContext context) {
// access animation controller on this page with controller.animationController
return Container();
}
}
Future initAnimationController() async {
animationController = AnimationController(vsync: this, duration: duration);
}
방법 2
class HomePage extends GetView with SingleGetTickerProviderMixin {
}
https://ithelp.ithome.com.tw/articles/10266087?sc=rss.iron
728x90
반응형
'Flutter-플러터 > 플러터 공부' 카테고리의 다른 글
Flutter - LinkedHasMap- 원하는 값 필터리스트로 만들기 (1) | 2023.11.30 |
---|---|
Flutter 모델에 데이터 추가 시 해야 하는 일 : 장부 test code2 (1) | 2023.11.23 |
Flutter X supabase X 공공데이터 북한 인물 조회 (0) | 2023.11.17 |
Flutter X Supabase RLS , 서버에 유저 정보 저장하기 (0) | 2023.11.16 |
Flutter- supabaase Google 소셜 로그인 구현 (0) | 2023.11.15 |