Flutter - DateTime의 형식을 지정하고 표시하는 방법
2040 단어 webdevtutorialflutterprogramming
오늘은
intl flutter package
를 표시하려는 방식으로 datetime 형식을 지정하는 방법을 보여드리겠습니다.패키지의 최신 버전을 확인하려면 이 링크HERE를 확인하십시오.
설치 및 가져오기
pubspec.yaml
에서 intl: ^0.17.0
를 추가하고 최신 버전을 확인하십시오. 버전 앞의 ^ 기호는 시스템이 해당 기본 릴리스 내에서 자동 업데이트하기 위한 것입니다. 따라서 버전 0.17.1을 출시하면 자동으로 업데이트됩니다.
dependencies:
flutter:
sdk: flutter
intl: ^0.17.0
사용하려는 파일에서 이렇게 가져옵니다.
import 'package:intl/intl.dart';
사용하는 방법
변수 - datetime
점, 쉼표, 화살표 등을 사용하여 원하는 대로 편집하고 서식을 지정할 수 있습니다.
DateFormat('d MMM y').format(datetime)
= 2022년 4월 28일DateFormat('d MM y').format(datetime)
= 28 04 2022DateFormat('d-MM-y').format(datetime)
= 2022-04-28
기본 형식을 제공하는 사용할 수 있는 함수 목록도 있습니다.
DateFormat.yQQQQ().format(datetime)
= 2022년 2분기
공식 문서HERE에서 사용 가능한 모든 형식을 살펴보십시오.
고맙습니다
.ltag__user__id__729596 .follow-action-button {
배경색: #000000 !중요;
색상: #ffffff !중요;
테두리 색상: #000000 !중요;
}
Matheus Paixão 팔로우
Gosto de compartilhar conhecimento pois foi assim que eu aprendi a programar. O meu negócio é todo dia saber mais que eu sabia ontem. Pode me chamar, vamos aprender juntos. Prazer =)
Reference
이 문제에 관하여(Flutter - DateTime의 형식을 지정하고 표시하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mgpaixao/flutter-how-to-format-datetime-and-how-you-display-it-2ljn
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
dependencies:
flutter:
sdk: flutter
intl: ^0.17.0
import 'package:intl/intl.dart';
변수 - datetime
점, 쉼표, 화살표 등을 사용하여 원하는 대로 편집하고 서식을 지정할 수 있습니다.
DateFormat('d MMM y').format(datetime)
= 2022년 4월 28일DateFormat('d MM y').format(datetime)
= 28 04 2022DateFormat('d-MM-y').format(datetime)
= 2022-04-28기본 형식을 제공하는 사용할 수 있는 함수 목록도 있습니다.
DateFormat.yQQQQ().format(datetime)
= 2022년 2분기공식 문서HERE에서 사용 가능한 모든 형식을 살펴보십시오.
고맙습니다
.ltag__user__id__729596 .follow-action-button {
배경색: #000000 !중요;
색상: #ffffff !중요;
테두리 색상: #000000 !중요;
}
Matheus Paixão 팔로우
Gosto de compartilhar conhecimento pois foi assim que eu aprendi a programar. O meu negócio é todo dia saber mais que eu sabia ontem. Pode me chamar, vamos aprender juntos. Prazer =)
Reference
이 문제에 관하여(Flutter - DateTime의 형식을 지정하고 표시하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mgpaixao/flutter-how-to-format-datetime-and-how-you-display-it-2ljn텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)