设置中文: main入口
@override Widget build(BuildContext context) { return MaterialApp( //国际语言包 localizationsDelegates:[GlobalMaterialLocalizations.delegate,GlobalWidgetsLocalizations.delegate], supportedLocales: [const Locale('zh', 'CH')], theme: ThemeData( primaryColor: themeColor, textTheme: TextTheme( display1: TextStyle( color: Colors.black54, fontSize: 16, fontWeight: FontWeight.bold ) ) // backgroundColor: Colors.black12, //cardColor:Colors.black12, // canvasColor: Colors.black12 ), home: HomeScaffoldView(), routes: MyRoutes.routes, ); }依赖
dependencies: flutter: sdk: flutter flutter_localizations: sdk: flutter效果图: