date_format icon indicating copy to clipboard operation
date_format copied to clipboard

Format Dates

Results 8 date_format issues
Sort by recently updated
recently updated
newest added

fix arabic days order

Not sure how this would work but I need relative formatting with a fall back to normal date formatting. Example: Today @ 11:15 AM which would fall back to 11/23/2022...

The current formatting method is a little painful ```dart var _message = '${formatDate(DateTime.now(), [ 'yy', '-', 'M', '-', 'd', ' ', 'h', ':', 'm', ':', 's' ])} $message}'; ``` It...

All of the examples on you readme page are incorrect as you have forgotten to quote the value: ``` print(formatDate(DateTime(1989, 02, 21), [yyyy, '-', mm, '-', dd])); ``` should read...

The String yyyy (from line 10 of date_format_base) return "yyyy" but when i call the date i get 10/05/yyyy if i replace it by "YYYY" it is working as expected

final List daysShort = const [ 'Mon', 'Tue', 'Wed', 'Thur', 'Fri', 'Sat', 'Sun' ]; error: request time Thur, 03 Nov 2022 03:02:24 GMT not follow RFC822 spec Thur -> Thu...