@@ -21,10 +21,14 @@ import androidx.compose.foundation.layout.Arrangement
2121import androidx.compose.foundation.layout.Box
2222import androidx.compose.foundation.layout.Column
2323import androidx.compose.foundation.layout.Row
24+ import androidx.compose.foundation.layout.WindowInsets
25+ import androidx.compose.foundation.layout.WindowInsetsSides
2426import androidx.compose.foundation.layout.fillMaxHeight
2527import androidx.compose.foundation.layout.fillMaxSize
2628import androidx.compose.foundation.layout.fillMaxWidth
29+ import androidx.compose.foundation.layout.only
2730import androidx.compose.foundation.layout.padding
31+ import androidx.compose.foundation.layout.safeDrawing
2832import androidx.compose.foundation.layout.size
2933import androidx.compose.foundation.layout.statusBarsPadding
3034import androidx.compose.foundation.layout.width
@@ -96,7 +100,14 @@ fun ReplyHomeScreen(
96100 val navigationDrawerContentDescription = stringResource(R .string.navigation_drawer)
97101 PermanentNavigationDrawer (
98102 drawerContent = {
99- PermanentDrawerSheet (Modifier .width(dimensionResource(R .dimen.drawer_width))) {
103+ PermanentDrawerSheet (
104+ modifier = Modifier
105+ .width(dimensionResource(R .dimen.drawer_width))
106+ .background(MaterialTheme .colorScheme.inverseOnSurface),
107+ windowInsets = WindowInsets .safeDrawing.only(
108+ WindowInsetsSides .Top + WindowInsetsSides .Start
109+ ),
110+ ) {
100111 NavigationDrawerContent (
101112 selectedDestination = replyUiState.currentMailbox,
102113 onTabPressed = onTabPressed,
0 commit comments