date_manager 0.0.4
date_manager: ^0.0.4 copied to clipboard
A simple and easy-to-use date formatting and relative time utility for Flutter and Dart.
0.0.4 - 2025-09-03 #
Added #
- Numeric formats:
dayMonthNumeric,monthDayNumeric,yearOnly. - Textual formats:
monthYearFull,monthYearAbbr,dayMonthFull,dayMonthAbbr,weekdayDayMonthAbbr,weekdayDayMonthFull,weekdayMonthYearFull,shortTextIso,shortTextIsoWeekday. - Date + time formats: dash variants, weekday + date + time, abbreviated month + date + time, US
full month + time, ISO 8601 full formats (
isoDateTimeUtc,isoDateTimeWithOffset).
Fixed #
- Consolidated and removed redundant formats; fully comprehensive set of date & time formats compatible with Flutter and pure Dart.
0.0.3 - 2025-08-29 #
Added #
- New ISO date formats:
isoDateSlash→yyyy/MM/dddateTime24IsoSlash→yyyy/MM/dd HH:mmdateTime12IsoSlash→yyyy/MM/dd hh:mm adateTime24Iso→yyyy-MM-dd HH:mmdateTime12Iso→yyyy-MM-dd hh:mm a
- Short date + time formats:
shortDateTime24→ 25/08/2025 14:30shortDateTime12→ 25/08/2025 02:30 PMshortDateTime24US→ 08/25/2025 14:30shortDateTime12US→ 08/25/2025 02:30 PM
- All new date + time formats are now demonstrated in the example app.
0.0.2 - 2025-08-25 #
Fixed #
- Dangling library doc comment in
lib/src/parser.dart. - Applied Dart formatting to all source files.
0.0.1 - 2025-08-25 #
Added #
- Initial release of
date_manager. - Predefined numeric date formats:
shortDate,shortDate2Digit,shortDateUS,shortDateUS2Digit,isoDate,shortDateDash,shortDateDashUS. - Predefined textual/written date formats:
longDate,longDateUS,longDateAbbr,longDateAbbrUS,fullDate. - Time formats:
shortTime24,shortTime12,longTime24,longTime12. - Date + time formats:
dateTime24,dateTime12,dateTime24US,dateTime12US,longDateTime24,longDateTime12. - Human-readable relative time functions:
DateManager.timeAgo()for past dates.DateManager.timeLater()for future dates.
- Fully compatible with Flutter and pure Dart.