App/Flutter
[ FLUTTER ] 오늘 날짜
최진훈
2021. 9. 8. 13:03
https://stackoverflow.com/questions/51579546/how-to-format-datetime-in-flutter
How to format DateTime in Flutter
I am trying to display the current DateTime in a Text widget after tapping on a button. The following works, but I'd like to change the format. Current approach DateTime now = DateTime.now();
stackoverflow.com
import 'package:intl/intl.dart';
DateTime now = DateTime.now();
String formattedDate = DateFormat('yyyy-MM-dd – kk:mm').format(now);