londonappbrewery / flash-chat-flutter

Learn to Code While Building Apps - The Complete Flutter Development Bootcamp
https://www.appbrewery.co
195 stars 677 forks source link

using the animated text kit affects the text theme color #29

Closed FredWolfe closed 3 years ago

FredWolfe commented 4 years ago

After importing and using the text kit plugin, the Text becomes invincible, it can be seen disappearing in the background colour, this is really upsetting @angelabauer or anyone any help fixing this problem?

alainjr10 commented 4 years ago

After importing and using the text kit plugin, the Text becomes invincible, it can be seen disappearing in the background colour, this is really upsetting @angelabauer or anyone any help fixing this problem?

I had the same problem. i just changed the text colour to black and it was all good.

fobf commented 3 years ago

add color: Colors.black, in the AnimatedTextKit( animatedTexts: [ TypewriterAnimatedText( 'Flash Chat', textStyle: const TextStyle( color: Colors.black, fontSize: 45.0, fontWeight: FontWeight.w900, ), speed: const Duration(milliseconds: 500), ), ], ),