【Flutter开发】输入框长按菜单 没有显示中文

560 阅读1分钟

如题,刚发出去的灰度版本,反馈出现了该问题,

image-20211209115928224

查了一下,是因为代码中没有配置“语言的本地化”,具体方法如下:

1、在 pubspec.yaml 中添加依赖

dependencies:
  flutter_localizations:
    sdk: flutter

2、在APP中配置

return MaterialApp(
  localizationsDelegates: [
    GlobalMaterialLocalizations.delegate,
    GlobalWidgetsLocalizations.delegate,
    GlobalCupertinoLocalizations.delegate,
  ],
  supportedLocales: [
    const Locale('zh', 'CN'),
    const Locale('en', 'US'),
  ],
  // 忽略其他配置
);

改后效果:

iOS端Android 端
image-20211209120104131image-20211209120158093