Skip to content
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

lagging on ios #67

Open
dsxailab opened this issue Jul 23, 2023 · 5 comments
Open

lagging on ios #67

dsxailab opened this issue Jul 23, 2023 · 5 comments

Comments

@dsxailab
Copy link

looks like it only happens for the first few drawables. once there are enough drawables the bug goes away

Can reproduce on iPhone 14 pro max simulator and iPad Mini (6th gen) simulator, and a real iPhone 14 Pro max device. Didn't try others but I believe it will give the same result. BTW, the web version works fine.

Screen.Recording.2023-07-23.at.12.17.03.pm.mov
@kundanlal5555
Copy link

kundanlal5555 commented Jul 29, 2023

I was faced same issue in IOS 16.x with Flutter 3.10.x.

Solution:
Downgrade flutter version to 3.7.10 (Use flutter version 3.7.10). work fine in IOS 16.x

@SarahHayat
Copy link

I reproduce in Flutter 3.13.0 and iOS 16.5.1

@synapticvoid
Copy link

The problem seems to be linked to the new Flutter rendering engine, Impeller, which is now enabled by default on iOS.

Disabling it seems to fix the issue:

flutter run --no-enable-impeller

You can also disable it when deploying your app, in your app's Info.plist:

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

@Dakrain
Copy link

Dakrain commented Oct 6, 2023

Any other way yet?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants