-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some effects fail on mobile web using the HTML renderer #78
Comments
This sounds like a Flutter framework issue. We're not using any platform specific code in Animate, so it should "just work". Would you mind filing an issue against Flutter and link back to this issue from it? Thanks in advance! |
I investigated further and it is only the |
Are you targeting html or canvaskit renderer? If you're using HTML, it may be due to this issue? |
I am using default Renderer. And it only happens on mobile devices. So when I understand correctly:
this will use html renderer on my mobile devices. So yes...probably it is this issue. Thanks! |
I just did an audit in iOS Simulator, and the following effects do not render correctly using Flutter's HTML renderer, though all do partially render, they just exhibit issues (don't animate, display incorrectly, etc):
Also of note:
I need to test on device, but thought I'd post the quick results here. |
Device testing on iOS, here's the effects that have trouble:
Everything else seems to work fine on device. |
For anyone bumping into this, I just encountered the same issue, but using CanvasKit and ColorEffect. Renders correctly on iOS and Android, fails both in Chrome and Safari on MacOS. |
This issue already came up here but was closed.
Some of the animations I use on my app will make my widgets disappear when I use the web-app on mobile devices. It works on desktop devices though. I tested to build for desktop, and build for web and tested in desktop browsers Firefox/Chrome/Chromium/Safari. It works fine there.
But when opening the webapp on mobile devices, either on android-devices or ios-devices, some of the animations will make widgets go disappear.
For example I use
.animate().shimmer().shake()
on one of my images. This makes it go disappear. Also I've build a Container that is usingmoveX()
. There the same happens. Interestingly on some rare occasions it works.I have no idea, what is going wrong. But this is a major issue, hence I created a new one, as the old one was just closed.
I've used flutter version
3.7.5
for building.The text was updated successfully, but these errors were encountered: