728x90
flutter에서 datetime 유형을 변경할때 사용!!
String dateFormat(String dateString, {bool numericDates = true}) {
DateTime notificationDate =
DateFormat("yyyy-MM-dd HH:mm:ss").parse(dateString);
print(notificationDate);
String month = notificationDate.month < 10
? '0${notificationDate.month}'
: "${notificationDate.month}";
String date = notificationDate.day < 10
? '0${notificationDate.day}'
: "${notificationDate.day}";
return '${notificationDate.year}.${month}.${date}';
}
728x90
'FRAMEWORK > FLUTTER' 카테고리의 다른 글
[flutter] setState 사용하지않고 스크롤시 bottom navigation bar 안보이게 하기 (1) | 2022.04.05 |
---|---|
Flutter clipboard에 복사하기 (0) | 2022.03.03 |
플루터 bar chart에서 가로 스크롤 추가하기 (0) | 2022.01.10 |
flutter apple login android & ios 모두 완료 (5) | 2022.01.06 |
Flutter 사파리 왼쪽에서 오른쪽으로 스와이프 뒤로가기 트랜지션 오류 수정은 이렇게! (0) | 2022.01.03 |