@@ -21,14 +21,10 @@ 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
2624import androidx.compose.foundation.layout.fillMaxHeight
2725import androidx.compose.foundation.layout.fillMaxSize
2826import androidx.compose.foundation.layout.fillMaxWidth
29- import androidx.compose.foundation.layout.only
3027import androidx.compose.foundation.layout.padding
31- import androidx.compose.foundation.layout.safeDrawing
3228import androidx.compose.foundation.layout.size
3329import androidx.compose.foundation.layout.statusBarsPadding
3430import androidx.compose.foundation.layout.width
@@ -101,10 +97,8 @@ fun ReplyHomeScreen(
10197 PermanentNavigationDrawer (
10298 drawerContent = {
10399 PermanentDrawerSheet (
104- modifier = Modifier
105- .width(dimensionResource(R .dimen.drawer_width))
106- .background(MaterialTheme .colorScheme.inverseOnSurface),
107- windowInsets = WindowInsets .safeDrawing.only(WindowInsetsSides .Top ),
100+ modifier = Modifier .width(dimensionResource(R .dimen.drawer_width)),
101+ drawerContainerColor = MaterialTheme .colorScheme.inverseOnSurface,
108102 ) {
109103 NavigationDrawerContent (
110104 selectedDestination = replyUiState.currentMailbox,
0 commit comments