countdown_progress_indicator

Creator: coderz1093

Last updated:

Add to Cart

Description:

countdown progress indicator

Countdown Progress Indicator #



Customizable countdown timer for Flutter
Getting Started #
To use this package, add countdown_progress_indicador as a dependency in your pubspec.yaml file.
dependencies:
...
countdown_progress_indicador: ^0.1.2
copied to clipboard
How to use #
In your project add the following import:
import 'package:countdown_progress_indicator/countdown_progress_indicator.dart';
copied to clipboard
This widget starts the countdown automatically by default and supports pause and resume actions.
If you want to support these actions, implement a CountdownController as the example above:
SizedBox(
height: 200,
width: 200,
child: CountDownProgressIndicator(
controller: _controller,
valueColor: Colors.red,
backgroundColor: Colors.blue,
initialPosition: 0,
duration: 20,
text: 'SEC',
onComplete: () => null,
),
),
copied to clipboard
Custom Formatter #
If you want to show a text different than the time in seconds, you can implement a custom time formatter.
CountDownProgressIndicator(
controller: _controller,
valueColor: Colors.red,
backgroundColor: Colors.blue,
initialPosition: 0,
duration: 365,
timeFormatter: (seconds) {
return Duration(seconds: seconds)
.toString()
.split('.')[0]
.padLeft(8, '0');
},
text: 'hh:mm:ss',
onComplete: () => null,
),
copied to clipboard
Countdown #

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.