【问题标题】:How can I change the language of the intl date formater?如何更改国际日期格式化程序的语言?
【发布时间】:2022-08-19 01:21:24
【问题描述】:

所以我想将国际日期格式更改为法语格式(fr_FR)。我用谷歌搜索并找到了这一行,但我不知道将它放在代码中的哪个位置:

import \'package:intl/date_symbol_data_local.dart\';
initializeDateFormatting(\'fr_FR\', null).then((_) => runMyCode());

标签: flutter dart date date-format intl


【解决方案1】:

使您的小部件有状态并在 initState() 方法中添加代码行

@override   void initState() {
    super.initState();
    initializeDateFormatting('fr_FR', null); }

https://pub.dev/packages/intl

intl: ^0.17.0

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多