Skip to content

Commit

Permalink
[chore] 공백 dialog를 수정합니다.
Browse files Browse the repository at this point in the history
  • Loading branch information
MinseoSONG committed Jan 24, 2025
1 parent 2195a12 commit 87aec82
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ fun GongBaekDialog(
) {
Column(
modifier = modifier
.padding(horizontal = 15.dp)
.background(color = GongBaekTheme.colors.white, shape = RoundedCornerShape(20.dp))
.padding(20.dp),
horizontalAlignment = Alignment.CenterHorizontally
Expand All @@ -43,7 +44,7 @@ fun GongBaekDialog(
painter = painterResource(gongBaekDialogType.imageResId),
contentDescription = null,
modifier = Modifier
.padding(top = 14.dp, bottom = 20.dp)
.padding(bottom = 20.dp)
.padding(horizontal = 36.dp)
.aspectRatio(1f / 1f)
)
Expand All @@ -59,10 +60,10 @@ fun GongBaekDialog(
text = stringResource(gongBaekDialogType.descriptionResId),
color = GongBaekTheme.colors.gray07,
style = GongBaekTheme.typography.body2.m14,
modifier = Modifier.padding(top = 4.dp, bottom = 24.dp)
modifier = Modifier.padding(top = 4.dp, bottom = 20.dp)
)
} else {
Spacer(Modifier.height(20.dp))
Spacer(Modifier.height(15.dp))
}

when (gongBaekDialogType) {
Expand All @@ -79,7 +80,7 @@ fun GongBaekDialog(
enableButtonColor = GongBaekTheme.colors.gray09
)
GongBaekBasicButton(
title = stringResource(R.string.dialog_button_group_room),
title = stringResource(R.string.dialog_button_space),
onClick = onConfirmButtonClick,
verticalPadding = 12,
enabled = true,
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<string name="dialog_description_error">다시 시도해주세요.</string>
<string name="dialog_button_confirm">확인</string>
<string name="dialog_button_close">닫기</string>
<string name="dialog_button_group_room">모임방 바로가기</string>
<string name="dialog_button_space">스페이스 바로가기</string>

<!-- GroupRoomScreen-->
<string name="grouproom_people_count">멤버 (%1$s/%2$s명)</string>
Expand Down

0 comments on commit 87aec82

Please sign in to comment.