-
[flutter] 날짜 표현시 사용할만한 date_format 패키지flutter/flutter package 2019. 6. 20. 11:50
date_format 은 날짜를 표현할 때 사용할만한 패키지 입니다.
패키지 설치는 pubspec.yaml 에서
dependencies:
date_format: ^1.0.6
dependencies 안에 넣고 get pakages 해주시면 됩니다.
사용법도 쉽네요.
Use formatDate function to format a DateTimeprint(formatDate(DateTime(1989, 02, 21), [yyyy, '-', mm, '-', dd]));
Output:
1989-02-21
Long month names
print(formatDate(DateTime(1989, 2, 21), [yy, '-', M, '-', d]));
Output:
89-feb-21
Time parts
print(formatDate( DateTime(1989, 02, 1, 15, 40, 10), [HH, ':', nn, ':', ss]));
Output:
15:40:10
Timezone
print(formatDate( DateTime(1989, 02, 1, 15, 40, 10), [HH, ':', nn, ':', ss, z]));
Output:
15:40:10+0100
해당 패키지의 설치 및 사용법은 https://pub.dev/packages/date_format 왼쪽 링크를 참고하시면 될 것 같습니다.