본문 바로가기
Flutter/Flutter FAQ

Flutter 다트에서 요일의 이름을 어떻게 얻을 수 있나요?, How get the name of the days of the week in Dart

by 베타코드 2023. 8. 23.
반응형

질문


누군가는 DateTime에서 요일의 이름을 어떻게 추출할 수 있는지 알고 있나요?

예시:

DateTime date = DateTime.now();
String dateFormat = DateFormat('dd-MM-yyyy hh:mm').format(date);

결과 -> 금요일


답변


'EEEE'를 날짜 패턴으로 사용하세요.

 DateFormat('EEEE').format(date); /// 예: 목요일

잊지말고 import 하세요.

import 'package:intl/intl.dart';

더 많은 정보는 여기를 확인하세요 : https://pub.dev/documentation/intl/latest/intl/DateFormat-class.html

반응형

댓글