[TIL] GoRouter
GoRouterURL 기반 라우팅 패키지웹/앱 사용URL 기반 네비게이션 패키지기능(1)templeate syntax 지원/post 경로에 id 파라미터 넘기고 싶을 때final router = GoRouter( initialLocation: '/', errorBuilder: (context, state) { return ErrorPage(); }, routes: [ GoRoute( path: '/', builder: (context, state) => HomePage(), routes: [ GoRoute( path: 'post', builder: (context, state) => PostListPage(), ..