Skip to content

Instantly share code, notes, and snippets.

@gaburielcasado
Last active September 12, 2022 20:56
Show Gist options
  • Save gaburielcasado/2e062371eaffd423201141a74378fa65 to your computer and use it in GitHub Desktop.
Save gaburielcasado/2e062371eaffd423201141a74378fa65 to your computer and use it in GitHub Desktop.
Dart date formatting
import 'package:intl/intl.dart';
import 'package:intl/date_symbol_data_local.dart';
void main() async {
final parsedDate = DateTime.parse('2022-08-04 17:00:00');
await initializeDateFormatting('pt_BR');
final formattedDate = DateFormat('E d MMM y', 'pt_BR').format(parsedDate);
final capitalizedDate = formattedDate.split(' ').map((e) => '${e[0].toUpperCase()}${e.substring(1)}').join(' ');
print(capitalizedDate);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment