Flutter Intl 패키지 DateFormat 날짜를 일본어로 설정
Intl 패키지 사용
공식 문서는 여기
pubspec.yamldependencies:
flutter:
sdk: flutter
intl: ^0.16.1
이것으로 보존하면 마음대로 넣어준다.
DateFormat 날짜를 일본어로 설정
디폴트에서는 영어이므로, 이것을 일본어로 한다!
main.dartimport '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),
)
// 省略
)
}
}
이런 식으로 일본어가 된다.
DateFormat.yMMMd('ja').format(tx.date),
tx.date
의 부분은 자신의 코드내에서 사용하는 DateTime 클래스의 값을 넣어 주세요!
Reference
이 문제에 관하여(Flutter Intl 패키지 DateFormat 날짜를 일본어로 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kokogento/items/0eaeeef6311b444ef617
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
dependencies:
flutter:
sdk: flutter
intl: ^0.16.1
디폴트에서는 영어이므로, 이것을 일본어로 한다!
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),
)
// 省略
)
}
}
이런 식으로 일본어가 된다.
DateFormat.yMMMd('ja').format(tx.date),
tx.date
의 부분은 자신의 코드내에서 사용하는 DateTime 클래스의 값을 넣어 주세요!
Reference
이 문제에 관하여(Flutter Intl 패키지 DateFormat 날짜를 일본어로 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kokogento/items/0eaeeef6311b444ef617텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)