[Flutter] 앱을 일본어화하고 싶습니다.
1287 단어 FlutterWeeklyFlutter
참고가 된 사이트 : htps : //는 zm. jp/아r치ゔぇs/90
① pubspec에 플러그인 추가
pubspec.yaml에 추가 (copipe로 OK)
dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
② Pub get 한다
자신의 파일에서 사용할 수 있도록 합시다.
③ main.dart에 추가한다.
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
],
supportedLocales: [Locale('English'), Locale('ja')],
debugShowCheckedModeBanner: false,
home: ????Screen(),
);
}
}
이것으로 해 보면 할 수 있다고 생각합니다. 나는 할 수 있었다.
Reference
이 문제에 관하여([Flutter] 앱을 일본어화하고 싶습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/iseruuuuu/items/c1b5a74675882652fd51텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)