Flutter Animation
Nov 4, 2021
Play around with flutter animation
Mixins are a way of reusing a class’s code in multiple class hierarchies. It is incorporated into a class with the keyword with.
Animate a text using Animated Text Kit
AnimatedTextKit(
animatedTexts: [
TypewriterAnimatedText(
"LET'S CHAT",
textStyle: const TextStyle(
fontSize: 45.0,
fontWeight: FontWeight.w900,
),),
],
),