flutter时间格式化

引入intl
pubspec.yaml

intl: ^0.16.1

代码如下:

import 'package:intl/intl.dart';

class TimeFormat {
  static final formatStr = "yyyy-MM-dd";

  static final formatter = new DateFormat(formatStr);

  static String millionsTimeToStr(int millionsTime) {
    return formatter
        .format(new DateTime.fromMicrosecondsSinceEpoch(millionsTime * 1000));
  }
}
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐