Flutter: How to Change tooltip name of "paste" on textField to device's language

1,655

Add flutter_localizations to your pubspec.yaml:

dependencies:
  flutter:
    sdk: flutter
  flutter_localizations:
    sdk: flutter

In your MaterialApp:

return MaterialApp(
  ...
  locale: const Locale('de'), // change to locale you want. not all locales are supported
  localizationsDelegates: [
    GlobalMaterialLocalizations.delegate,
    GlobalWidgetsLocalizations.delegate,
  ],
);
Share:
1,655
Lucas Britto
Author by

Lucas Britto

Updated on December 06, 2022

Comments