We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
return UpgradeAlert( child: MultiProvider( providers: [UserManager.getProvider()], child: MaterialApp( navigatorKey: appConfig!.mainNavigatorKey, title: 'Prairy', debugShowCheckedModeBanner: false, theme: buildTheme(), initialRoute: this._getInitialRoute(), onGenerateRoute: AppRouter.Router.generateRoute, localizationsDelegates: [ AppLocalizationsDelegate(), GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, GlobalCupertinoLocalizations.delegate, ], supportedLocales: [ const Locale('fr'), // French ], ), ), );
Here is the code handling on my side but alert is not showing
The text was updated successfully, but these errors were encountered:
@esaiamuthan Have you find any solution?
Sorry, something went wrong.
return UpgradeAlert( child: MultiProvider( providers: [UserManager.getProvider()], child: MaterialApp( navigatorKey: appConfig!.mainNavigatorKey, title: 'Prairy', debugShowCheckedModeBanner: false, theme: buildTheme(), initialRoute: this._getInitialRoute(), onGenerateRoute: AppRouter.Router.generateRoute, localizationsDelegates: [ AppLocalizationsDelegate(), GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, GlobalCupertinoLocalizations.delegate, ], supportedLocales: [ const Locale('fr'), // French ], ), ), ); Here is the code handling on my side but alert is not showing
It seems that the upgrader widget should be below the material app widget as mentioned here:
#434 (comment)
@esaiamuthan Can you provide the upgrader log for us to review?
No branches or pull requests
Here is the code handling on my side but alert is not showing
The text was updated successfully, but these errors were encountered: