Skip to content

Commit

Permalink
Boolti-343 style: 티켓 선택 바텀시트 불필요한 하단 패딩 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
mangbaam committed Dec 30, 2024
1 parent b9dda46 commit b76355d
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,9 @@ import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.WindowInsets
import androidx.compose.foundation.layout.asPaddingValues
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.heightIn
import androidx.compose.foundation.layout.navigationBars
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.width
Expand Down Expand Up @@ -104,11 +101,7 @@ fun ChooseTicketBottomSheet(
) {
Column(
modifier = Modifier
.padding(
bottom = 20.dp + WindowInsets.navigationBars
.asPaddingValues()
.calculateBottomPadding()
)
.padding(bottom = 20.dp)
.heightIn(max = 564.dp)
) {
uiState.selected?.let {
Expand Down

0 comments on commit b76355d

Please sign in to comment.