Flutter:未定义名称“AppLocalizations”。尝试将名称更正为已定义的名称,或定义名称

Abi*_*san 5 localization flutter flutter-getx flutter-localizations applocalizations

当我使用 GetX 状态管理时,Flutter 默认本地化不起作用。它向我显示一个错误,例如

Undefined name 'AppLocalizations'.
Try correcting the name to one that is defined, or defining the name.
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

我该如何解决这个问题?

小智 3

请在 pubspec.yaml 上添加这些依赖项

dependencies:
  flutter:
    sdk: flutter
  flutter_localizations:
    sdk: flutter
  intl: ^0.17.0
Run Code Online (Sandbox Code Playgroud)

更多信息请点击此处