Last active
September 12, 2022 20:56
-
-
Save gaburielcasado/2e062371eaffd423201141a74378fa65 to your computer and use it in GitHub Desktop.
Dart date formatting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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