So I want my flutter application to navigate the user to a new page called home page at a particular date and time of that date this is my code can I change it to work not after 5 seconds but on Wed,7 Sep at 8:00 am
@override
void initState() {
Timer(
Duration(seconds: 5),
() => Navigator.of(context).pushReplacement(MaterialPageRoute(builder: (BuildContext context)=>GamePage())),
);
super.initState();