首页 > 解决方案 > 如何使用flutter GETx随着时间的变化更新timeData?

问题描述

我希望我的应用程序的时间随着时间的推移而改变。我想用GETx管理状态。

标签: androidflutterdart

解决方案


这将通过

Timer.periodic(Duration(second:30), (timer) { updateTheState })

推荐阅读