Device: Pixel 8 Pro
Starting with Android 15 apps are rendered edge-to-edge by default.
This means status bar will overlay the app screen unless insets are explicitly handled.
Recommended fix: safeDrawingPadding
Set up window insets
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
enableEdgeToEdge()
setContent {
Box(Modifier.safeDrawingPadding()) {
// the rest of the app
}
}
}

Device: Pixel 8 Pro
Starting with Android 15 apps are rendered edge-to-edge by default.
This means status bar will overlay the app screen unless insets are explicitly handled.
Recommended fix:
safeDrawingPaddingSet up window insets