기본 widget을 사용하다보면 영어로 되어있는것을 볼수 있다 .(ex)datepicker
바꿔보자
일단 pubspec.yaml의 디펜던시에 추가
dependencies:
flutter:
sdk: flutter
flutter_localizations: //추가
sdk: flutter//추가
main으로가서
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "현지",
localizationsDelegates: [ //추가
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
],
supportedLocales: [ //추가
const Locale('ko'),
],
);
}
}
widget들 변할걸 볼수있다
반응형
'flutter > study' 카테고리의 다른 글
firebase dynamiclink 만들기 (0) | 2023.03.03 |
---|---|
google map 연동 (0) | 2022.09.25 |
money comma (0) | 2021.11.05 |
TextField 사용시 바깥부분 터치시 focus 잃게하는방법 (0) | 2021.07.28 |
app 이름 변경 (0) | 2021.07.21 |