**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**  https://github.com/nslogx/flutter_easyloading/assets/75356382/e995a539-89f9-4755-abb6-0e46106e0dad
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