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
Describe the bug FlutterEasyLoading 会使 PopupMenuButton 同时使用,当我点击下拉框下拉,取消的时候,会使下拉框背景有一段时间的像素块
Flutter/Dart info Widget materialApp = MaterialApp( debugShowCheckedModeBanner: false, checkerboardOffscreenLayers: true, locale: localeProvider.language, localizationsDelegates: const [ S.delegate, GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate, GlobalWidgetsLocalizations.delegate ], supportedLocales: const [ Locale('zh', 'CN'), Locale('en', 'US'), Locale('it', 'Italy'), ], onGenerateRoute: Routes.router.generator, navigatorKey: navigatorKey, home: const LoginPage(), builder: (BuildContext context, Widget? child) { return MediaQuery( data: MediaQuery.of(context).copyWith(textScaler: TextScaler.noScaling), child: FlutterEasyLoading( child: child!, ), ); }, );
Screenshots
The text was updated successfully, but these errors were encountered:
Thanks for taking the time to open an issue. I will have a look and answer as soon as possible.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
FlutterEasyLoading 会使 PopupMenuButton 同时使用,当我点击下拉框下拉,取消的时候,会使下拉框背景有一段时间的像素块
Flutter/Dart info
Widget materialApp = MaterialApp(
debugShowCheckedModeBanner: false,
checkerboardOffscreenLayers: true,
locale: localeProvider.language,
localizationsDelegates: const [
S.delegate,
GlobalMaterialLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
GlobalWidgetsLocalizations.delegate
],
supportedLocales: const [
Locale('zh', 'CN'),
Locale('en', 'US'),
Locale('it', 'Italy'),
],
onGenerateRoute: Routes.router.generator,
navigatorKey: navigatorKey,
home: const LoginPage(),
builder: (BuildContext context, Widget? child) {
return MediaQuery(
data:
MediaQuery.of(context).copyWith(textScaler: TextScaler.noScaling),
child: FlutterEasyLoading(
child: child!,
),
);
},
);
Screenshots
bug.mp4
The text was updated successfully, but these errors were encountered: