5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Flutter Intlパッケージ DateFormatの日付を日本語にする

Posted at

Intlパッケージを使う

公式ドキュメントはこちら

pubspec.yaml
dependencies:
  flutter:
    sdk: flutter
  intl: ^0.16.1

これで保存すれば勝手に入れてくれる。

DateFormatの日付を日本語にする

デフォルトでは英語なので、これを日本語にする!

main.dart
import 'package:flutter/material.dart';
import 'package:intl/date_symbol_data_local.dart'; // 追加
import './transaction.dart';
import 'package:intl/intl.dart'; // 追加

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {

    // 初期化のためのメソッドを追加
    initializeDateFormatting('ja');

    return MaterialApp(
      title: 'Flutter App',
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
      // 省略
@override
  Widget build(BuildContext context) {
   return Scaffold(
       appBar: AppBar(
         title: Text('Flutter App'),
       ),
       body: Column(
         // 省略
           Text(
             DateFormat.yMMMd('ja').format(tx.date),
             style: TextStyle(color: Colors.grey),
           )
        // 省略
      )
   }
}
スクリーンショット 2020-08-13 14.37.13.jpg こんな感じで日本語になる。
DateFormat.yMMMd('ja').format(tx.date),

tx.dateの部分はご自身のコード内で使うDateTimeクラスの値を入れてね!

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?