Implementing flutter animations is made more simple and easy with the use of the Animation packages. There are many flutter animation packages available. In this post, we gonna check out a text animation package and use it in our flutter app.
We are going to use animated_text_kit package
Install package
dependencies:
animated_text_kit: ^4.2.0
dependencies:
animated_text_kit: ^4.2.0
dependencies: animated_text_kit: ^4.2.0
Import Package
import 'package:animated_text_kit/animated_text_kit.dart';
import 'package:animated_text_kit/animated_text_kit.dart';
Animation on Text – usage sample code
Row(
children: <Widget>[
Hero(
tag: 'logo',
child: Container(
child: Image.asset('images/logo.png'),
height: 60.0,
),
),
TypewriterAnimatedTextKit(
text: ['Flash Chat'],
textStyle: TextStyle(
fontSize: 45.0,
fontWeight: FontWeight.w900,
),
),
],
),
Row(
children: <Widget>[
Hero(
tag: 'logo',
child: Container(
child: Image.asset('images/logo.png'),
height: 60.0,
),
),
TypewriterAnimatedTextKit(
text: ['Flash Chat'],
textStyle: TextStyle(
fontSize: 45.0,
fontWeight: FontWeight.w900,
),
),
],
),
Row( children: <Widget>[ Hero( tag: 'logo', child: Container( child: Image.asset('images/logo.png'), height: 60.0, ), ), TypewriterAnimatedTextKit( text: ['Flash Chat'], textStyle: TextStyle( fontSize: 45.0, fontWeight: FontWeight.w900, ), ), ], ),