Flutter에서 initState와 super.initState는 무엇인가요?

이전에 전체Flutter mobile application life cycle를 살펴봤으므로 이 문서에서는 Flutter에서 initState() 및 super.initState()가 무엇인지 살펴보겠습니다.

같은 것을 탐구합시다.

Flutter에서 initState와 super.initState는 무엇인가요?



initState()는 위젯 트리에 Stateful Widget이 삽입될 때 한 번 호출되는 메서드입니다. build()와 달리 이 메서드는 한 번만 호출되기 때문에 수신기 등록과 같은 초기화 작업이 필요한 경우 일반적으로 이 메서드를 재정의합니다.

initState() 사용:



initState()는 State 클래스의 메서드이며 Flutter에서 중요한 수명 주기 메서드로 간주됩니다. initState()는 한 번만 호출되며 일회성 초기화에 사용합니다.

예시:
  • 특정 BuildContext에 의존하는 데이터를 초기화합니다.
  • build() 전에 실행해야 하는 데이터를 초기화하려면
  • Streams를 구독하십시오.

  • initState()는 한 번만 호출됩니다. 또한 super.initState()를 호출해야 합니다.

    이 @override 방법은 다음을 수행하는 가장 좋은 시간입니다.
  • 위젯의 생성된 인스턴스에 대해 특정 BuildContext에 의존하는 데이터를 초기화합니다.
  • 트리에서 이러한 위젯 '상위'에 의존하는 속성을 초기화합니다.
  • Streams, ChangeNotifiers 또는 이 위젯의 ​​데이터를 변경할 수 있는 기타 개체를 구독합니다.

  • @override
    initState() {
      super.initState();
     // Add listeners to this class
    }
    


    예시:

    class InitExample extends StatefulWidget {
      const InitExample({Key? key}) : super(key: key);
    
      @override
      State createState() => _InitExampleState();
    }
    
    class _InitExampleState extends State {
      @override
      void initState() {
        super.initState();
        print("initState() called");
      }
    
      @override
      void dispose() {
        super.dispose();
      }
    
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: AppBar(
            title: const Text("InitState Example"),
          ),
          body: const Center(
            child: Text("Welcome Flutter"),
          ),
        );
      }
    }
    


    산출:



    initState() 호출



    결론:
    읽어 주셔서 감사합니다 !!!

    이 기사에서는 Flutter에서 initState() 및 super.initState()가 무엇인지 살펴보았습니다.

    계속 배우도록 !!! 계속 설레발!!!

    FlutterAgency.com은 Flutter 기술 및 Flutter 개발자 전용 포털 플랫폼입니다. 포털에는 Flutter 위젯 가이드, Flutter 프로젝트, 코드 라이브러리 등과 같은 Flutter의 멋진 리소스가 가득합니다.

    좋은 웹페이지 즐겨찾기