Answers for "how to get date from date time flutter"

11

flutter get current date

import 'package:intl/intl.dart';

main() {
  static final DateTime now = DateTime.now();
  static final DateFormat formatter = DateFormat('yyyy-MM-dd');
  final String formatted = formatter.format(now);
  print(formatted); // something like 2013-04-20
}
// https://pub.dev/documentation/intl/latest/intl/DateFormat-class.html
Posted by: Guest on July-11-2020
0

how to show date only in flutter

import 'package:intl/intl.dart';
String now = DateFormat("yyyy-MM-dd").format(DateTime.now());
Posted by: Guest on January-03-2021

Code answers related to "how to get date from date time flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language