- 安装依赖
在pubspec.yaml文件中插入
dependencies:
flutter_localizations:
sdk: flutter
- 在MeteralApp组件中配置
MaterialApp(
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
],
supportedLocales: [
const Locale('zh', 'CN'),
const Locale('en', 'US'),
],
title: 'xxx',
theme: myTheme(),
home: Home({}),
);
}