Skip to content

Commit da95f65

Browse files
committed
enableEdgeToEdgeがおかしかったので修正
1 parent ceb8df7 commit da95f65

File tree

1 file changed

+2
-2
lines changed
  • AndroidApp/ui/src/main/kotlin/me/nya_n/notificationnotifier/ui/common

1 file changed

+2
-2
lines changed

AndroidApp/ui/src/main/kotlin/me/nya_n/notificationnotifier/ui/common/AppScaffold.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package me.nya_n.notificationnotifier.ui.common
22

33
import androidx.compose.foundation.layout.PaddingValues
4-
import androidx.compose.foundation.layout.systemBarsPadding
4+
import androidx.compose.foundation.layout.fillMaxSize
55
import androidx.compose.material3.MaterialTheme
66
import androidx.compose.material3.Scaffold
77
import androidx.compose.material3.Snackbar
@@ -52,7 +52,7 @@ fun AppScaffold(
5252
}
5353
}
5454
},
55-
modifier = Modifier.systemBarsPadding(),
55+
modifier = Modifier.fillMaxSize(),
5656
content = content
5757
)
5858
}

0 commit comments

Comments
 (0)