Answers for "flutter convert the time of the day to string"

24

flutter convert datetime in day of month

import 'package:intl/intl.dart';

DateTime now = DateTime.now();
String formattedDate = DateFormat('yyyy-MM-dd – kk:mm').format(now);
Posted by: Guest on September-10-2020
1

convert timeofday to string flutter

String formatTimeOfDay(TimeOfDay tod) {
    final now = new DateTime.now();
    final dt = DateTime(now.year, now.month, now.day, tod.hour, tod.minute);
    final format = DateFormat.jm();  //"6:00 AM"
    return format.format(dt);
}
Posted by: Guest on April-25-2020

Code answers related to "flutter convert the time of the day to string"

Code answers related to "Dart"

Browse Popular Code Answers by Language