Skip to content

Commit

Permalink
Merge pull request #328 from OMZigak/fix/#327-addMeetingQA
Browse files Browse the repository at this point in the history
[fix] 모임 추가 플로우 QA 반영
  • Loading branch information
mmaybei authored Aug 23, 2024
2 parents c50329f + bc69c21 commit e0dcf87
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ class CheckInviteCodeView: BaseView {
// MARK: Property

let enterInviteCodeView: JoinButtonView = JoinButtonView(
mainTitle: "초대 코드를 받았다면",
subTitle: "초대 코드가 없다면"
)
mainTitle: "초대 코드 입력하기",
subTitle: "초대 코드를 받았다면"
).then {
$0.layer.cornerRadius = 8
}

let createMeetingView: JoinButtonView = JoinButtonView(
mainTitle: "초대 코드 입력하기",
subTitle: "직접 모임 추가하기"
)
mainTitle: "직접 모임 추가하기",
subTitle: "초대 코드가 없다면"
).then {
$0.layer.cornerRadius = 8
}

private let checkInviteLabel: UILabel = UILabel().then {
$0.setText("친구에게 받은\n모임 초대 코드가 있으신가요?", style: .head01, color: .gray8)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ class JoinButtonView: BaseView {

override func setupAutoLayout() {
subTitleLabel.snp.makeConstraints {
$0.top.equalToSuperview().offset(18)
$0.top.equalToSuperview().offset(14)
$0.leading.equalToSuperview().offset(20)
}

mainTitleLabel.snp.makeConstraints {
$0.bottom.equalToSuperview().inset(18)
$0.bottom.equalToSuperview().inset(14)
$0.leading.equalToSuperview().offset(20)
$0.top.equalTo(subTitleLabel.snp.bottom).offset(8)
$0.top.equalTo(subTitleLabel.snp.bottom).offset(2)
}

chevronImageView.snp.makeConstraints {
Expand Down

0 comments on commit e0dcf87

Please sign in to comment.