Questions tagged [flutter-timer]
21 questions
0
votes
3 answers
Flutter/Dart: Call a Function Within itself to repeatedly Trigger a Timer to Refresh a JWT Token?
Instead of checking whether my JWT Token has expired on every query, I'd like to check it only upon the first initialization of the app in main and then automatically refresh it every 55 minutes.
Here's my refresh function which I invoke at the top…

Meggy
- 1,491
- 3
- 28
- 63
0
votes
1 answer
how to use slider and timer together in Flutter
I am very new for Flutter AND I need your small help.
I want to use images in slider which I already created no problem in that but I need one advice I want to slide that slider using timer.
How can i do that please help. I a, stuck on this problem…
0
votes
1 answer
How to continue animation in a page that is disposed in Flutter?
Basically, I have a bunch of ListTiles on my home page which represents some timers. When I press a ListTile it navigator goes to another page with an option to set a timer and a cool clock animation. Now when I go back to the home page the…

Richard J
- 80
- 1
- 4
- 10
0
votes
1 answer
Simple timer App where it counts the number of seconds that have gone by since it's start shows an incorrect time
I am new to flutter and decided to build a simple timer app, that counts the number of seconds that have gone by since it's start and it ends up showing the wrong time. The timer starts off with 0, then increments to 1 and, from there on out it…

aDev
- 43
- 9
0
votes
3 answers
Flutter: How to stop timer after N seconds interval?
I am using below code to start the timer
Timer Snippet:
_increamentCounter() {
Timer.periodic(Duration(seconds: 2), (timer) {
setState(() {
_counter++;
});
});
}
RaisedButton raisedButton =
new…

Jitesh Mohite
- 31,138
- 12
- 157
- 147
-1
votes
1 answer
Flutter timer.periodic is slower than real life
I am using timer.periodic to call some functions at different times. The problem which I am facing is that the timer is much slower than real life like for example what you will see in my code that the timer should finish in 5 seconds but in real…

taha khamis
- 401
- 4
- 22