标签: flutter
如何根据时间和日期导航至flutter应用程序上的页面。 对于前。我希望应用程序的所有当前用户在下午3点被导航到特定页面。
答案 0 :(得分:1)
DateTime.now()为您提供当前日期和时间。
DateTime.now()
if(DateTime.now().hour == 15){ Navigator.of(context).push(MaterialPageRoute( builder: (_) => new Page(), )); }