Flutterアプリでは、intlパッケージは 15言語 のみをロードします。ただし、Dart DateFormat はさらに多くをサポートします。翻訳は必要ありませんが、正しいDateFormat
が必要です。すべてのDateFormat
ロケールをロードする方法は?
最も高いStatefulWidgetにこれらのインポートを追加します
import 'package:intl/intl.Dart';
import 'package:intl/date_symbol_data_local.Dart';
その状態で、initStateをオーバーライドして追加します
@override
void initState() {
super.initState();
initializeDateFormatting();
}
例えば
import 'package:flutter/material.Dart';
import 'package:intl/intl.Dart';
import 'package:intl/date_symbol_data_local.Dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Intl Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Intl Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
DateFormat dateFormat;
DateFormat timeFormat;
@override
void initState() {
super.initState();
initializeDateFormatting();
dateFormat = new DateFormat.yMMMMd('cs');
timeFormat = new DateFormat.Hms('cs');
}
void _refresh() {
setState(() {});
}
@override
Widget build(BuildContext context) {
var dateTime = new DateTime.now();
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text(dateFormat.format(dateTime)),
new Text(timeFormat.format(dateTime)),
],
),
),
floatingActionButton: new FloatingActionButton(
onPressed: _refresh,
tooltip: 'Refresh',
child: new Icon(Icons.refresh),
),
);
}
}
Dartは主に ISO 631 2文字コードを使用し、該当する場合は国のバリエーションも使用します。例えば: ja, en_US, en_GB, zh_HK, zh_CN
。時折、3文字のコードを使用します。完全なリストを見つけるには、ファイルでDateSymbols
を検索するだけです date_symbol_data_local.Dart
Flutterで利用可能なすべてのロケールのリストは、最上位のプロパティから取得できます availableLocalesForDateFormatting