mateusfccp/pausable_timer
Ein Dart-Timer, der angehalten, fortgesetzt und zurückgesetzt werden kann.
- Stars
- 36
- Forks
- 8
- Letzter Push (UTC)
- 26.12.2025
- Projektstatus
- Aktiv
SprachenDartShell
Technische Themen
Verwendete Abhängigkeiten
Abhängigkeiten 4 Einträge
- clock
^1.1.0 - fake_asyncEntwicklung
^1.3.1 - lintsEntwicklung
^3.0.0 - testEntwicklung
>=1.24.0
Original-README
Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
Projekt-README ein-/ausklappen
pausable_timer
CI Pub Score Latest Dart version pub package pub points likes
A Dart timer that can be paused, resumed and reset.
PausableTimer aims to be as similar and compatible as possible with Dart's
Timer, while providing extra functionality.
How to use it
PausableTimer should work exactly the same as a regular Timer, but can be
paused, resumed and restarted with the respective methods (.pause, .start
and .resume).
There are also additional getters to check if the timer is active, paused, expired or cancelled.
More detailed examples can be found in the example folder.