개발/Flutter
Flutter Navigator 홈 화면으로 가는 방법
해결 Navigator의 popUntil 메소드를 사용하면 된다. Navigator.popUntil(context, (route) => route.isFirst); 설명 Navigator.popUntil 메소드의 설명을 확인해보자. void popUntil(BuildContext context, bool Function(Route ) predicate) flutter docs의 설명을 읽어보면 Calls pop repeatedly on the navigator that most tightly encloses the given context until the predicate returns true. predicate가 true를 반환할 때까지 pop(context)를 반복한다. predicate는 rou..
2022. 2. 16.