Search code examples
darttooltipflutter

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


When i go to copy or paste on textfield, the tooltip is always on english language, and my device is on Pt-Br. How can i change or fix that ?


Solution

  • 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,
      ],
    );