颤振时间计算

时间:2018-10-26 19:23:25

标签: flutter add calculation timeofday

在我的flutter应用程序中,用户选择了一个时间,我只需要在其中添加一些小时和分钟即可显示结果。这容易吗?不幸的是,似乎没有像TimeOfDay.add()这样的函数。

有什么想法吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以为此使用日期时间:可以根据需要添加分钟或小时。

TimeOfDay.fromDateTime(DateTime.now().add(Duration(hours: 2))); // result is 2hrs ahead of current time