반응형 flutter1 [Flutter] Flutter LifeCycle Event와 Android LifeCycle Event 비교하기 오늘은 Flutter에서 LifeCycle Event와 Android Activity에서 LifeCycle Event가 어떻게 연관되어 있는지 확인해보려고 합니다. 이는 Flutter 내에서 플랫폼 별 코드를 작성할 때 알아두면 유용할 수 있습니다. 본 코드들은 Android Studio에서 실행하였습니다. Flutter에서 LifeCycle Event를 수신받기 위해서는 WidgetsBindingObserver를 State에 mixin 합니다. 코드는 아래와 같습니다. class GetScreenStateState extends State with WidgetsBindingObserver{ @override void initState() { //앱 상태 변경 이벤트 등록 WidgetsBinding.in.. 2022. 12. 23. 이전 1 다음 반응형