Skip to content

Commit eff679a

Browse files
committed
[BOOK-265] fix: 네비게이션 바 버튼 스타일일때 키보드와 하단 버튼 사이 간격이 벌어지는 문제 해결
1 parent 64c37c8 commit eff679a

File tree

1 file changed

+5
-0
lines changed
  • feature/edit/src/main/kotlin/com/ninecraft/booket/feature/edit/record

1 file changed

+5
-0
lines changed

feature/edit/src/main/kotlin/com/ninecraft/booket/feature/edit/record/RecordEditUi.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ import androidx.compose.foundation.layout.Spacer
88
import androidx.compose.foundation.layout.fillMaxSize
99
import androidx.compose.foundation.layout.fillMaxWidth
1010
import androidx.compose.foundation.layout.height
11+
import androidx.compose.foundation.layout.WindowInsets
12+
import androidx.compose.foundation.layout.exclude
13+
import androidx.compose.foundation.layout.ime
1114
import androidx.compose.foundation.layout.imePadding
15+
import androidx.compose.material3.ScaffoldDefaults
1216
import androidx.compose.foundation.layout.padding
1317
import androidx.compose.foundation.layout.width
1418
import androidx.compose.foundation.rememberScrollState
@@ -58,6 +62,7 @@ internal fun RecordEditUi(
5862
ReedScaffold(
5963
modifier = modifier.fillMaxSize(),
6064
containerColor = White,
65+
contentWindowInsets = ScaffoldDefaults.contentWindowInsets.exclude(WindowInsets.ime),
6166
) { innerPadding ->
6267
Column(
6368
modifier = modifier

0 commit comments

Comments
 (0)