CristhianLara1996
CristhianLara1996
Hi @agelospanagiotakis , you only need to update the package go_router because in the current example it has a old version go_router and otherwise you need to change main.dart because...
try this: `return MultiProvider( providers: [ ChangeNotifierProvider(create: (_) => appService), Provider(create: (_) => AppRouter(appService)), Provider(create: (_) => authService), ], child: Builder( builder: (context) { final GoRouter goRouter = Provider.of(context, listen:...