如何在 flutter 中使用 DateTime.now() 仅显示当前时间?

问题描述 投票:0回答:3
 DateTime currentTime = new DateTime.now();

  Widget CustomCards(Color frontColor, String fetchTime) {
    Card cards = new Card(
      elevation: 1.0,
      margin: const EdgeInsets.symmetric(horizontal: 2.0, vertical: 2.0),
      color: bgColor,
      shape: new RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(15.0),
      ),
      child: Column(
        children: [
          Padding(
            padding: const EdgeInsets.all(5.0),
            child: Row(
              children: [
                Padding(
                  padding: const EdgeInsets.only(left: 15.0),
                  child: Text(
                  currentTime.toString(),
                  style: new TextStyle(
                    fontStyle: FontStyle.italic,
                    fontFamily: 'Satisfy',
                    fontSize: 15.0,
                    color: frontColor,
                  ),
                ),
              ],
            ),
          ),
        ],
      ),
    );
    return cards;
  }

如何从 DateTime 显示当前时间,因为它始终显示当前日期和时间,但我想以 格式 hh:mm:ss 显示时间。这里的秒一定是他们的。我找不到任何逻辑请帮助我。 谢谢你

android flutter datetime flutter-layout flutter-test
3个回答
8
投票

在 pubspec.yaml 中添加依赖项

intl: ^0.16.1
(从 pub.dev 检查最新的依赖项),然后您可以在 dart 文件中使用
DateFormat.yMMMd().format(DateTime.now());
。您可以根据您的要求更改日期格式模式。

对于 DateFormat 集中不存在的自定义日期模式,您可以使用

DateFormat('hh:mm:ss').format(DateTime.now());

1
投票

使用 DateFormat 类将其转换为字符串和您想要的模式。

示例:

DateFormat('your date pattern').format(currentTime);

0
投票

这将根据我们的

time zone
格式化时间,并且需要
BuildContent

TimeOfDay.fromDateTime(DateTime.now()).format(context)

例如,当前时间是

7:25 PM
,因此这将返回相同的结果。

© www.soinside.com 2019 - 2024. All rights reserved.