0 purchases
countdown widget
countdown_widget #
A package timer works correctly even if the app is locked issue
Getting Started #
Scaffold(
body: Center(
child: CountDownWidget(
duration: Duration(seconds: 20),
builder: (context, duration) {
return Text(duration.inSeconds.toString());
},
onDurationRemainChanged: (duration) {
print('duration:${duration.toString()}');
},
),
),
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.