Answers for "timeofday to string flutter"

0

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 "timeofday to string flutter"

Python Answers by Framework

Browse Popular Code Answers by Language