Skip to content

Instantly share code, notes, and snippets.

@Hwan-seok
Last active April 24, 2023 06:22
Show Gist options
  • Save Hwan-seok/8d44a81665d131221dfa8e69352dfc11 to your computer and use it in GitHub Desktop.
Save Hwan-seok/8d44a81665d131221dfa8e69352dfc11 to your computer and use it in GitHub Desktop.
Prints all formatted dateFormats
import 'package:intl/date_symbol_data_local.dart';
import 'package:intl/intl.dart';
test('formats', () async {
final time = DateTime(2022, 1, 1, 13, 12);
for (final locale in DateFormat.allLocalesWithSymbols()) {
final format = DateFormat.jm(locale);
final formattedTime = format.format(time);
print('$locale: $formattedTime');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment