androidfluttermobilesamsung-mobile

UI Glitching & Flickering Issue on Some Devices in Flutter App


Flutter UI Glitching and Flickering

enter image description here

I am facing a UI glitching/flickering issue in my Flutter application on some devices. The UI breaks, showing distorted elements, as seen in the attached image).

Details:

Any suggestions on how to fix or debug it?


Solution

  • Try disabling Impeller by adding the following setting to your project's AndroidManifest.xml file under the <application> tag:

    <meta-data
        android:name="io.flutter.embedding.android.EnableImpeller"
        android:value="false" />
    

    Since Flutter 3.27, Impleller is the default rendering engine for Android. Disabling Impeller has helped with similar issues here and here.