Last updated:
0 purchases
odometer
Odometer #
The package which was inspired by the package Odometer js.
Examples of counter animation customization are made using this package:
In this package you will find pre-built widgets:
AnimatedSlideOdometerNumber
SlideOdometerTransition
and high modifiable widgets:
AnimatedOdometer
OdometerTransition
AnimatedSlideOdometerNumber #
The ImplicitlyAnimatedWidget uses the AnimatedOdometer with the sliding and fading digits transitions.
AnimatedSlideOdometerNumber(
numberTextStyle: TextStyle(fontSize: 15),
odometerNumber: OdometerNumber(_counter),
duration: Duration(seconds: 1))
copied to clipboard
SlideOdometerTransition #
The ExplicitlyAnimatedWidget uses the OdometerTransition with the sliding and fading digits transitions.
SlideOdometerTransition(
numberTextStyle: TextStyle(fontSize: 15),
odometerAnimation: _odometerAnimation,
duration: Duration(seconds: 1))
copied to clipboard
Base widgets AnimatedOdometer and OdometerTransition #
The AnimatedOdometer is based on implicit animation, and the OdometerTransition is based on explicit animation.
To customize the odometer, you need to use two OdometerAnimationTransitionBuilders for new and old numbers.
You will have access to:
The digit
The digit place
The animation progress of this digit
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.