aagarwal1012 / Animated-Text-Kit

🔔 A flutter package to create cool and beautiful text animations. [Flutter Favorite Package]
https://animated-text-kit.web.app
MIT License
1.64k stars 306 forks source link

Animated Text broken on iOS with new Flutter 3.10 (first version that uses Impeller on iOS by default) #310

Open anzbert opened 1 year ago

anzbert commented 1 year ago

edit: edited for new flutter 3.10.

Describe the bug Animated Text broken when using the new Impeller renderer on iOS. Text only appears when animation is finished.

To Reproduce Steps to reproduce the behavior:

  1. Use the new Impeller renderer on iOS, by upgrading flutter to 3.10.
  2. Use an ColorizeAnimatedText widget, for example.
  3. Start your app on the simulator or on device
  4. The animated text just shows up when animation is done.

Expected behavior Animated text should work like it does with Skia, the old renderer.

Flutter:

Additional context This could be an issue with impeller or with animated text. Impeller is now the default renderer on iOS and should be feature complete.

Alvish0407 commented 1 year ago

Same

rakib205 commented 1 year ago

Any fix? @aagarwal1012

yelkamel commented 1 year ago

Same here

ngmduc2012 commented 1 year ago

me too,

thomasp7983 commented 1 year ago

me too

andyshephard commented 1 year ago

https://github.com/flutter/flutter/issues/120003

tall-nuts commented 1 year ago

follow

fannnu commented 1 year ago

Found a workaround by disabling Impeller.

  <key>FLTEnableImpeller</key>
  <false />

Add the above code to the top of your info.plist file. This is just a quick fix, long-term solution would be an update of this package to work with now default Impeller. @aagarwal1012

jplauber commented 11 months ago

me too

Khondwani commented 9 months ago

Also Experienced the same thing but once I disabled Impeller everything worked. Please do resolve this issue @aagarwal1012 please