dhshah/FlutterTextTransformationAnimation
A Widget which transforms the text inside of it via series of character changes.
View on GitHub ↗Archived
- Stars
- 2
- Forks
- 1
- Last push (UTC)
- Mar 28, 2022
- Project status
- Archived
LanguagesDart
Dependencies used
Dependency list 2 items
- flutter
{"sdk":"flutter"} - flutter_testDevelopment
{"sdk":"flutter"}
Original README
English project snapshot. Visit GitHub for the latest content.
Expand / collapse project README
FlutterTextTransformationAnimationWidget
A Widget which transforms the text inside of it via series of character changes.
Demo of Text Transformation
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),
),
)
...