Flutter:如何将 textField 上 "paste" 的工具提示名称更改为设备语言
Flutter: How to Change tooltip name of "paste" on textField to device's language
当我在文本字段上复制或粘贴时,工具提示始终为英语,而我的设备在 Pt-Br 上。我该如何更改或修复它?
将 flutter_localizations 添加到您的 pubspec.yaml:
dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
在你的MaterialApp
中:
return MaterialApp(
...
locale: const Locale('de'), // change to locale you want. not all locales are supported
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
],
);
当我在文本字段上复制或粘贴时,工具提示始终为英语,而我的设备在 Pt-Br 上。我该如何更改或修复它?
将 flutter_localizations 添加到您的 pubspec.yaml:
dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
在你的MaterialApp
中:
return MaterialApp(
...
locale: const Locale('de'), // change to locale you want. not all locales are supported
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
],
);