Skip to content

Commit

Permalink
[FIX/#287] 필터링 재설정 바텀시트 패딩 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyobeen-Park committed Oct 14, 2024
1 parent 75a5736 commit 550be8e
Showing 1 changed file with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,26 +65,29 @@ fun HomeFilteringBottomSheet(
content = {
Column(
modifier = modifier
.padding(horizontal = 24.dp)
.fillMaxWidth(),
) {
Text(
text = stringResource(id = R.string.change_filter_top_bar_title),
style = TerningTheme.typography.title2,
color = Black,
modifier = Modifier
.padding(horizontal = 24.dp)
.padding(bottom = 16.dp),
)

HorizontalDivider(
thickness = 1.dp,
color = Grey200,
modifier = Modifier
.padding(horizontal = 24.dp),
)

ChangeFilteringTitleText(
text = stringResource(id = R.string.change_filter_grade_title),
modifier = Modifier
.padding(top = 18.dp, bottom = 12.dp)
.padding(horizontal = 24.dp)
)

ChangeFilteringRadioGroup(
Expand All @@ -97,13 +100,16 @@ fun HomeFilteringBottomSheet(
),
onButtonClick = { index ->
currentGrade = Grade.entries[index]
}
},
modifier = Modifier
.padding(horizontal = 24.dp),
)

ChangeFilteringTitleText(
text = stringResource(id = R.string.change_filter_period_title),
modifier = Modifier
.padding(top = 32.dp, bottom = 12.dp)
.padding(horizontal = 24.dp)
)

ChangeFilteringRadioGroup(
Expand All @@ -115,13 +121,16 @@ fun HomeFilteringBottomSheet(
),
onButtonClick = { index ->
currentPeriod = WorkingPeriod.entries[index]
}
},
modifier = Modifier
.padding(horizontal = 24.dp),
)

ChangeFilteringTitleText(
text = stringResource(id = R.string.change_filter_start_work_title),
modifier = Modifier
.padding(top = 32.dp, bottom = 49.dp)
.padding(horizontal = 24.dp)
)

YearMonthPicker(
Expand All @@ -137,6 +146,7 @@ fun HomeFilteringBottomSheet(
text = R.string.change_filter_save,
cornerRadius = 10.dp,
modifier = Modifier
.padding(horizontal = 24.dp)
.padding(top = 51.dp),
onButtonClick = {
currentGrade?.let { grade ->
Expand Down

0 comments on commit 550be8e

Please sign in to comment.