달력 띄우기
example
Future<DateTime?> selectedDate = showDatePicker(
context: context,
initialDate: DateTime.now(), // 초깃값
firstDate: DateTime(2020), // 시작일
lastDate: DateTime.now(), // 마지막일
);
문제점
- 달력이 영어로 출력된다.
해결방법
- pubspec.yaml
flutter_localizations: sdk: flutter
- main.dart
MaterialApp( title: 'TEST APP', localizationsDelegates: [ GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, ], supportedLocales: [ const Locale('en', 'US'), const Locale('ko', 'KO'), ], ),
'ETC > Flutter' 카테고리의 다른 글
[flutter] Row(행) 과 Column(열) 위젯 이란? (0) | 2021.11.06 |
---|---|
[flutter] DropdownButton 사용하기 (0) | 2021.11.06 |
[flutter] body안에서 tabbar 사용하기 (0) | 2021.11.01 |
[flutter] 변경된 스낵바(SnackBar) 문법 (0) | 2021.10.19 |
[flutter] 변경된 버튼들(FlatButton,Outline Button,RaisedButton) (0) | 2021.10.19 |
[flutter] 앱 시작화면(spash image) 이미지 설정하기 (0) | 2021.10.19 |
댓글