v2.0.9
date_format
一个简单的 API 来格式化日期。提供各种常量来构建日期格式字符串。使用 `formatDate` 方法根据格式字符串格式化日期。
448喜欢 15.9万近 30 天下载150Pub 分数
AndroidiOSWebmacOSWindowsLinux
格式化日期
^1.3.0以下为英文项目原文快照,最新内容请访问 GitHub。
A simple API to format dates.
Use formatDate function to format a DateTime object.
print(formatDate(DateTime(1989, 02, 21), [yyyy, '-', mm, '-', dd]));
Output:
1989-02-21
print(formatDate(DateTime(1989, 2, 21), [yy, '-', M, '-', d]));
Output:
89-feb-21
print(formatDate(
DateTime(1989, 02, 1, 15, 40, 10), [HH, ':', nn, ':', ss]));
Output:
15:40:10
print(formatDate(
DateTime(1989, 02, 1, 15, 40, 10), [HH, ':', nn, ':', ss, z]));
Output:
15:40:10+0100