countdown_progress_indicator 0.1.0 copy "countdown_progress_indicator: ^0.1.0" to clipboard
countdown_progress_indicator: ^0.1.0 copied to clipboard

outdated

Customizable countdown timer for Flutter with pause/resume controls.

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.0.1

How to use #

In your project add the following import:

import  'package:countdown_progress_indicator/countdown_progress_indicator.dart';

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,
	),
),

Countdown #

countdown

37
likes
0
pub points
88%
popularity

Publisher

unverified uploader

Customizable countdown timer for Flutter with pause/resume controls.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on countdown_progress_indicator