Skip to content

Commit

Permalink
[chore/#10] 회원정보 변경 화면 UI를 개선합니다.
Browse files Browse the repository at this point in the history
  • Loading branch information
SYAAINN committed Dec 4, 2024
1 parent 4720867 commit dc24357
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,14 @@ fun SettingScreen(
.fillMaxWidth()
.wrapContentHeight()
.clip(shape = RoundedCornerShape(20.dp))
.background(color = Color(0xFF1352F9))
.background(color = if(isButtonEnabled) Color(0xFF1352F9) else Color.Gray)
.clickable(
enabled = isButtonEnabled,
onClick = {
if (inputPassword.isBlank()) onUserInfoChangeClick(null, inputHobby)
else if (inputHobby.isBlank()) onUserInfoChangeClick(inputPassword, null)
else onUserInfoChangeClick(inputPassword, inputHobby) }
else onUserInfoChangeClick(inputPassword, inputHobby)
}
),
contentAlignment = Alignment.Center,
content = {
Expand Down

0 comments on commit dc24357

Please sign in to comment.