본문 바로가기
Flutter/개발

[플러터/화면전환] The context used to push or pop routes from the Navigator must be that of a widget that is a descendant of a Navigator widget.

by ESTP 개발자 2023. 5. 2.

플러터 화면 전환을 하려고 하는데 이런 에러가 떴나요?

The context used to push or pop routes from the Navigator must be that of a widget 
that is a descendant of a Navigator widget.

 

void main() {
  runApp(const MyApp());
}

runApp하는 부분을 MaterialApp으로 감싸주면 해결!

void main() {
  runApp(const MaterialApp(home: MyApp(),) );
}

댓글