mateusfccp/pausable_timer
일시 정지, 재시작 및 리셋이 가능한 Dart 타이머입니다.
- Stars
- 36
- Forks
- 8
- 최근 푸시(UTC)
- 2025. 12. 26.
- 프로젝트 상태
- 활성
언어DartShell
기술 주제
사용 중인 의존성
의존성 목록 4 개
- clock
^1.1.0 - fake_async개발 의존성
^1.3.1 - lints개발 의존성
^3.0.0 - test개발 의존성
>=1.24.0
원본 README
아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
README 펼치기 / 접기
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.