Last updated:
0 purchases
animated text
Animated_Text #
Animated_Text helps you to animate between words by re-using the similar alphabets in them.
Installing #
1. Depend on it #
Add this to your package's pubspec.yaml file:
dependencies:
animated_text: ^1.0.2
copied to clipboard
2. Install it #
You can install packages from the command line:
with pub:
$ pub get
copied to clipboard
with Flutter:
$ flutter packages get
copied to clipboard
3. Import it #
Now in your Dart code, you can use:
import 'package:animated_text/animated_text.dart';
copied to clipboard
Usage #
AnimatedText #
/** Your parent widget here */
child : AnimatedText(
alignment: Alignment.center,
speed: Duration(milliseconds: 1000),
controller: AnimatedTextController.loop,
displayTime: Duration(milliseconds: 1000),
wordList: ['animations.', 'are.', 'easier.', 'now.'],
textStyle: TextStyle(
color: Colors.black,
fontSize: 55,
fontWeight: FontWeight.w700),
onAnimate: (index) {
print("Animating index:" + index.toString());
},
onFinished: () {
print("Animtion finished");
},
),
copied to clipboard
Widget Options #
key
description
controller
controls the animation state enum AnimatedTextController { play, pause, stop, restart, loop } by-default it is set to AnimatedTextController.play
onAnimate
called whenever the next animation is going to start
onFinished
called when the animation is finished and is not a looping animation
repeatCount
it tells how many times the animation should be repeated by default it is set to repeatCount = 5
textStyle
Uses the DefaultTextStyle of the context if not used.
displayTime
tells for how much time the animation should wait and display the text before starting the next animation.
Features coming in next version #
On-going implementation for future:
Custom Fade Animation Selection
Help us to keep going. (Be the first one) #
I can code faster but my laptop is lazy. Help me upgrade it. Please consider donating if you think Animated_Text is helpful.
Paypal Me on paypal.me/kawal7415
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.