Flutter – Go_router child routes with parameters
I try to use go_router package and this is my reouter confiegration GoRouter router = GoRouter( routes: [ GoRoute( path: '/', name: 'home', builder: (context, state) => const Homepage(), routes: <RouteBase>[ GoRoute( path: 'reciters', name: 'reciters', builder: (context, state) =>…