flutter route (1) 썸네일형 리스트형 Flutter GoRouter로 페이지 관리하기 go_router 패키지는 구글 플러터 공식 패키지로 라우팅 관련한 기능들을 사용하기 쉽게 도와주는 패키지이다. https://docs.page/csells/go_router go_router docs.page Setting pubspec.yaml go_router: ^6.3.0 main.dart void main() { runApp(const _App()); } class _App extends StatelessWidget { const _App({Key? key}) : super(key: key); final GoRouter _router = GoRouter( initialLocation: "/", routes: [ GoRoute( path: "/", builder: (_, state) => Home.. 이전 1 다음