0 purchases
stylish text
Stylish Text #
This flutter package contains few custom animated text.
Roadmap #
TypewriterText()
LinearMovingText()
BounceText()
OscillateText()
FadeText()
Typewriter #
Example code:
TypewriterText(
'Dhaka is the capital city of Bangladesh',
style: TextStyle(fontSize: 20, color: Colors.green),
),
copied to clipboard
LinearMoving #
Example Code:
LinearMovingText(
'Welcome to Naogaon',
style: const TextStyle(fontSize: 20, color: Colors.blue),
direction: Direction.utd,
),
copied to clipboard
4 direction available:
Direction.utd, Direction.dtu, Direction.rtl, Direction.ltr
Bounce #
Example Code:
BounceOutText(
'Flutter project',
style: const TextStyle(fontSize: 20, color: Colors.purple),
direction: Direction.dtu,
),
copied to clipboard
Oscillate #
Example Code:
OscillateText(
'This is Oscillating Text',
textDirection: TextDirection.ltr,
style: TextStyle(fontSize: 20, color: Colors.blue),
),
copied to clipboard
Fade #
Example Code:
FadeText(
'Hello World!',
style: TextStyle(fontSize: 25, fontWeight: FontWeight.bold, color: Colors.redAccent),
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.