https://github.com/studioidan/flutter_number_animation
With this package you can display numbers or any other text more nicely
https://github.com/studioidan/flutter_number_animation
Last synced: 8 months ago
JSON representation
With this package you can display numbers or any other text more nicely
- Host: GitHub
- URL: https://github.com/studioidan/flutter_number_animation
- Owner: studioidan
- License: other
- Created: 2021-04-20T20:29:19.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-22T14:13:57.000Z (about 5 years ago)
- Last Synced: 2025-10-23T00:54:50.437Z (8 months ago)
- Language: Dart
- Size: 1.07 MB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_number_animation
>With this package you can display numbers or any other text more nicely
## Preview

### Works with text too!

# How to use
1. Add this to your package's pubspec.yaml file:
````dart
dependencies:
flutter_number_animation: ^0.0.6
````
2. Add NumberAnimation Widget wherever you need!
````dart
NumberAnimation('123456789'),
````
3. You can also set the TextStyle and time between each slides
````dart
NumberAnimation('123456789',
textStyle: TextStyle(fontSize: 60, color: Colors.red),
timeBetweenSlides: Duration(milliseconds: 800)
)
````
## Getting Started
For help getting started with Flutter, view our online [documentation](https://flutter.io/).
For help on editing package code, view the [documentation](https://flutter.io/developing-packages/).
With this package you can display numbers or any other text more nicely
## Getting Started
This project is a starting point for a Dart
[package](https://flutter.dev/developing-packages/),
a library module containing code that can be shared easily across
multiple Flutter or Dart projects.
For help getting started with Flutter, view our
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.