Hi FlutterFlow Community,
I’m using FlutterFlow to generate my app. When submitting to the Google Play Console, I received two warnings related to edge-to-edge display (full screen) on Android 15+.
Here are the full messages from the Play Console:
---
1. Edge-to-edge display may not be available for all users
On Android 15 and higher, apps targeting SDK 35 are shown edge-to-edge by default. Apps targeting SDK 35 need to handle insets to ensure proper display on Android 15 and later. Investigate the issue, test the app edge-to-edge, and make the necessary updates. Alternatively, call enableEdgeToEdge()
for Kotlin or EdgeToEdge.enable()
for Java to maintain backward compatibility.
---
2. The app uses deprecated APIs or parameters for edge-to-edge display
One or more of the APIs used or parameters defined for edge-to-edge and window display have been deprecated in Android 15. Your app uses the following deprecated APIs or parameters:
android.view.Window.setStatusBarColor
android.view.Window.setNavigationBarColor
android.view.Window.setNavigationBarDividerColor
They start in the following places:
I1.c.a
io.flutter.plugin.platform.d.a
io.flutter.plugin.platform.h.C
r2.j.G0
To fix this, migrate away from these APIs or parameters.
---
Has anyone faced this issue? Is there a way to enable or fix edge-to-edge display?
Thanks in advance!