Skip to content

Commit

Permalink
[Feature] ScheduleAdd 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
ajou4095 committed Feb 7, 2024
1 parent 271e565 commit 367c419
Showing 1 changed file with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -539,24 +539,24 @@ fun ScheduleAddScreen(
},
hintText = "경사 관련 메모를 입력해주세요"
)
Spacer(modifier = Modifier.height(46.dp))
ConfirmButton(
properties = ConfirmButtonProperties(
size = ConfirmButtonSize.Large,
type = ConfirmButtonType.Primary
),
modifier = Modifier
.padding(horizontal = 20.dp, vertical = 12.dp)
.weight(1f),
onClick = {
intent(ScheduleAddIntent.OnConfirm)
}
) { style ->
Text(
text = "저장하기",
style = style
)
}
Spacer(modifier = Modifier.height(46.dp))
ConfirmButton(
properties = ConfirmButtonProperties(
size = ConfirmButtonSize.Large,
type = ConfirmButtonType.Primary
),
modifier = Modifier
.padding(horizontal = 20.dp, vertical = 12.dp)
.fillMaxWidth(),
onClick = {
intent(ScheduleAddIntent.OnConfirm)
}
) { style ->
Text(
text = "저장하기",
style = style
)
}
}

Expand Down

0 comments on commit 367c419

Please sign in to comment.