change the datetime format in flutter, to leave it only with the date
问题 I would like to know how I can change the datetime format in flutter, to leave it only with the date. I also want to know if there is another widget that only contains the date. Thanks 回答1: You can use DateFormat from intl package. With it you can custom to any format that you need. Add to pubspec.yaml dependencies: intl: ^0.15.7 On Dart code: import 'package:intl/intl.dart'; final dateFormatter = DateFormat('yyyy-MM-dd'); final dateString = dateFormatter.format(DateTime.now()); Then you can