Skip to content

justkawal/animated_text

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Platform Pub Package License: MIT Donate Issue Forks Stars

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

2. Install it

You can install packages from the command line:

with pub:

$  pub get

with Flutter:

$  flutter packages get

3. Import it

Now in your Dart code, you can use:

    import 'package:animated_text/animated_text.dart';
    

Usage

AnimatedText

g

      /** 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");
                },
              ),

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

Donate

Paypal Me on paypal.me/kawal7415

About

Animated Text helps you to animate between words. : https://pub.dev/packages/animated_text

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages