I added the flutter localization in my flutter app. Copy paste stopped working and it does not work even i copy text from somewhere else, it does not allow me to paste the text, please if someone have solution, let me know, thanks.
1 Answer
Have you addedd localizationsDelegates inside your MaterialApp ?
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
],
1 Comment
Salman Rafi
yes i added these ` localizationsDelegates: [ AppLocalizations.delegate, GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, GlobalCupertinoLocalizations.delegate ], locale: themeNotifier.currentLocale, supportedLocales: [ Locale('en'), Locale('ru'), Locale('ar'), Locale('fr'), Locale('es'), ],`