skip to Main Content

Flutter – prevent dialog from being above later pushed page

I am using typed routes with go_router in flutter. I show a loading spinner like this: showDialog<void>( context: context, barrierDismissible: false, builder: (BuildContext context) { return const Dialog( backgroundColor: Colors.transparent, elevation: 0, child: Center( child: CircularProgressIndicator( valueColor: AlwaysStoppedAnimation<Color>(Colors.black), ), ),…

VIEW QUESTION

Flutter – ProviderContainer and GoRouter

I want to read the GoRouter outside of main() and outside of any widget. GoRouter provider is defined as follows: final goRouterProvider = Provider<GoRouter>( (ref) { return GoRouter(...); } Then when I'm initializing flutter_local_notifications I want to read this provider…

VIEW QUESTION
Back To Top
Search