Fix state loss with workaround

Change-Id: I96025bd8b2f4f59019df95d1391b832249e7dc91
pull/1419/head
Alex Vanyo 1 year ago
parent 3dd424067f
commit a324fcc8d3

@ -201,13 +201,13 @@ internal fun NiaApp(
} }
Box( Box(
modifier = if (shouldShowTopAppBar) { modifier = Modifier.consumeWindowInsets(
Modifier.consumeWindowInsets( if (shouldShowTopAppBar) {
WindowInsets.safeDrawing.only(WindowInsetsSides.Top), WindowInsets.safeDrawing.only(WindowInsetsSides.Top)
)
} else { } else {
Modifier WindowInsets(0, 0, 0, 0)
}, },
),
) { ) {
NiaNavHost( NiaNavHost(
appState = appState, appState = appState,

Loading…
Cancel
Save