FLUTTER ECOSYSTEM

tejainece/date_format

格式化日期

日期格式 專案封面
Stars
87
Forks
75
最近推送(UTC)
2025年1月16日
專案狀態
未封存
Ravi Teja Gudapati GitHub avatar
GITHUB User

Ravi Teja Gudapati ↗

Programming. Innovation. Football. Exercising.

ABBStockholm官方網站 ↗
語言Dart

此儲存庫發佈的套件

使用的依賴

依賴清單 1 項
  • test開發依賴^1.3.0

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

date_format

A simple API to format dates.

Usage

Use formatDate function to format a DateTime object.

print(formatDate(DateTime(1989, 02, 21), [yyyy, '-', mm, '-', dd]));

Output:

1989-02-21

Long month names
print(formatDate(DateTime(1989, 2, 21), [yy, '-', M, '-', d]));

Output:

89-feb-21

Time parts
print(formatDate(
      DateTime(1989, 02, 1, 15, 40, 10), [HH, ':', nn, ':', ss]));

Output:

15:40:10

Timezone
print(formatDate(
      DateTime(1989, 02, 1, 15, 40, 10), [HH, ':', nn, ':', ss, z]));

Output:

15:40:10+0100