Formatting a Duration like HH:mm:ss

后端 未结 11 981
孤城傲影
孤城傲影 2020-12-05 22:53

Is there a good way to format a Duration in something like hh:mm:ss, without having to deal with time zones?

I tried this:

DateTime durationDate = Da         


        
11条回答
  •  心在旅途
    2020-12-05 23:39

    Define this:

    extension on Duration {
      String format() => '$this'.split('.')[0].padLeft(8, '0');
    }
    

    Usage:

    String time = Duration(seconds: 3661).format(); // 01:01:01
    

提交回复
热议问题