-
Notifications
You must be signed in to change notification settings - Fork 246
Description
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!,
),
);
},
);