Answers for "flutter check if date is past date"

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
0

how to display current date time in flutter

DateTime now = new DateTime.now();
DateTime date = new DateTime(now.year, now.month, now.day);
Posted by: Guest on January-03-2021

Code answers related to "flutter check if date is past date"

Code answers related to "Dart"

Browse Popular Code Answers by Language