gpt4 book ai didi

date - 如何在 flutter 中将 TimeOfDay 格式化为字符串

转载 作者:行者123 更新时间:2023-12-03 13:30:34 25 4
gpt4 key购买 nike

我想显示当前时间。
使用 TimeOfDay.Now() 获取当前时间,
TimeOfDay _currentTime = TimeOfDay.now();Text("Current Time: ${_currentTime.toString()}")
使用 Text() 小部件显示时间,但它显示 TimeOfDay(22.30) 而不是 10.30pm。

如何从 TimeOfDay(22.30) 中删除 TimeOfDay,只想显示 10.30pm。

最佳答案

做一个 toStringTimeOfDay对象将返回 toString 的默认实现根据文档:

Returns a string representation of this object.



您在这里要找的是 format它代替。

TimeOfDay _currentTime = TimeOfDay.now();
Text("Current Time: ${_currentTime.format(context)}")

也请查看官方文档以更好地理解为什么 toString没有做你期望的事情。

https://api.flutter.dev/flutter/material/TimeOfDay-class.html

关于date - 如何在 flutter 中将 TimeOfDay 格式化为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61089587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com