Flutter: Format a Date with locale using Dart
Using Intl APIs to format date
Required Imports:
import 'package:intl/intl.dart'; //for date format
import 'package:intl/date_symbol_data_local.dart'; //for date locale
Setting locale:
By default ‘Intl’ picks OS local. But if need to set, It can be set following ways:
Intl.defaultLocale = "zh_HK"; //sets global,//for specific Format instence only
var newFormat = new DateFormat.yMMMMd('zh_HK') // pass…