Whenever my home page was reloaded my data was updated but I want to reflect data instantly.
That’s why I need a method that can refresh my page or method after every 1 second(flutter).
pls, help me.
Whenever my home page was reloaded my data was updated but I want to reflect data instantly.
That’s why I need a method that can refresh my page or method after every 1 second(flutter).
pls, help me.
3
Answers
This work's for me :smile:
You can use the
Timer.periodic
to run a method everyDuration
you specify and usingStatefulWidget
n you can run it ininitState
like this:change the
print
with your method.in Your init state call the Timer like this
this will update your full screen