text_transformation_animation 0.1.4 text_transformation_animation: ^0.1.4 copied to clipboard
A text transformation animation.
FlutterTextTransformationAnimationWidget #
A Widget which transforms the text inside of it via series of character changes.
Example #
String text = "Transformation";
...
Scaffold(
appBar: AppBar(
title: TextTransformationAnimation(
text: _title,
duration: Duration(milliseconds: 1000),
),
),
floatingActionButton: FloatingActionButton(
onPressed: () => setState(() => _title = "Text Transformation"),
tooltip: 'Increment',
child: Icon(Icons.add),
),
)
...