flutterdartdatetime-format

How to show 00:00 (24hrs format) for 12am instead 24:00 in flutter


I need to show current time in 24-hours format in my Flutter project. Everything works perfect except that it will show 24:00 for 12am instead of showing 00:00. How can I solve this?

The below is my sample to format the date time:

DateFormat('kk:mm').format(time)

Solution