|  |  |  | @ -82,18 +82,22 @@ class MyApp extends StatelessWidget { | 
		
	
		
			
				|  |  |  |  |         List<LocalizationsDelegate<dynamic>> delegates = context.localizationDelegates; | 
		
	
		
			
				|  |  |  |  |         // delegates.add(GlobalMaterialLocalizations.delegate); | 
		
	
		
			
				|  |  |  |  |         delegates.add(MonthYearPickerLocalizations.delegate); | 
		
	
		
			
				|  |  |  |  |         return MaterialApp( | 
		
	
		
			
				|  |  |  |  |           navigatorKey: AppRoutes.navigatorKey, | 
		
	
		
			
				|  |  |  |  |           builder: (BuildContext context, Widget? child) { | 
		
	
		
			
				|  |  |  |  |             return MediaQuery(data: MediaQuery.of(context).copyWith(textScaleFactor: 1.0), child: child!); | 
		
	
		
			
				|  |  |  |  |           }, | 
		
	
		
			
				|  |  |  |  |           theme: AppTheme.getTheme(EasyLocalization.of(context)?.locale.languageCode == "ar"), | 
		
	
		
			
				|  |  |  |  |           debugShowCheckedModeBanner: false, | 
		
	
		
			
				|  |  |  |  |           localizationsDelegates: delegates, | 
		
	
		
			
				|  |  |  |  |           supportedLocales: context.supportedLocales, | 
		
	
		
			
				|  |  |  |  |           locale: context.locale, | 
		
	
		
			
				|  |  |  |  |           initialRoute: AppRoutes.initialRoute, | 
		
	
		
			
				|  |  |  |  |           routes: AppRoutes.routes, | 
		
	
		
			
				|  |  |  |  |         return SafeArea( | 
		
	
		
			
				|  |  |  |  |           top: false, | 
		
	
		
			
				|  |  |  |  |           bottom: Platform.isAndroid ? true : false, | 
		
	
		
			
				|  |  |  |  |           child: MaterialApp( | 
		
	
		
			
				|  |  |  |  |             navigatorKey: AppRoutes.navigatorKey, | 
		
	
		
			
				|  |  |  |  |             builder: (BuildContext context, Widget? child) { | 
		
	
		
			
				|  |  |  |  |               return MediaQuery(data: MediaQuery.of(context).copyWith(textScaleFactor: 1.0), child: child!); | 
		
	
		
			
				|  |  |  |  |             }, | 
		
	
		
			
				|  |  |  |  |             theme: AppTheme.getTheme(EasyLocalization.of(context)?.locale.languageCode == "ar"), | 
		
	
		
			
				|  |  |  |  |             debugShowCheckedModeBanner: false, | 
		
	
		
			
				|  |  |  |  |             localizationsDelegates: delegates, | 
		
	
		
			
				|  |  |  |  |             supportedLocales: context.supportedLocales, | 
		
	
		
			
				|  |  |  |  |             locale: context.locale, | 
		
	
		
			
				|  |  |  |  |             initialRoute: AppRoutes.initialRoute, | 
		
	
		
			
				|  |  |  |  |             routes: AppRoutes.routes, | 
		
	
		
			
				|  |  |  |  |           ), | 
		
	
		
			
				|  |  |  |  |         ); | 
		
	
		
			
				|  |  |  |  |       }, | 
		
	
		
			
				|  |  |  |  |     ); | 
		
	
	
		
			
				
					|  |  |  | 
 |