728x90
플러터에서 기본으로 제공하는 라이브러리로는 날짜포맷을 사용자 정의 할 수가 없습니다
그래서 라이브러리 설치로 해결할 수 있습니다.
intl 라이브러리 설치
flutter pub add intl
소스 예제
var today = DateTime.now();
print(DateFormat('yyyy-MM-dd - HH:mm:ss').format(today));
print(DateFormat('yyyyMMdd').format(today));
LIST
'Develop > Flutter' 카테고리의 다른 글
[Flutter / Dart 플러터] 날짜 더하기 빼기 계산하기 (0) | 2024.08.17 |
---|---|
[Flutter 플러터] FirebaseAuth 로그인 상태 확인해서 StreamBuilder 로 화면 분리하기 (0) | 2024.08.15 |
Flutter 플러터 긴글 내용 접고 펼치기, expandable_text 간단 라이브러리 (0) | 2024.08.11 |
Flutter 플러터 TextField 여러줄 입력 가능, border 보이지 않게 하기 (2) | 2024.08.11 |
Flutter 플러터 - CocoaPods not installed. Skipping pod install. CocoaPods not installed or not in valid state. (0) | 2024.08.04 |