Skip to content

Commit

Permalink
fix/#353 우측 화살표 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
JinUng41 committed Sep 1, 2024
1 parent fab518e commit 540bc17
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions KkuMulKum/Source/MeetingInfo/View/MeetingInfoView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,6 @@ final class MeetingInfoView: BaseView {
$0.setText("모임 참여 인원 0명", style: .body01, color: .gray8)
}

private let arrowButton = UIButton().then {
let image = UIImage(resource: .iconRight).withTintColor(.gray4)
$0.setImage(image, for: .normal)
$0.contentMode = .scaleAspectFill
}

private let createPromiseButton = UIButton(backgroundColor: .maincolor).then {
$0.setTitle("+ 약속추가", style: .body01, color: .white)
$0.layer.cornerRadius = Screen.height(52) / 2
Expand Down Expand Up @@ -102,7 +96,7 @@ final class MeetingInfoView: BaseView {
)
emptyDescriptionView.addSubviews(emptyDescriptionLabel)
addSubviews(
infoBanner, memberCountLabel, arrowButton, memberListView, createPromiseButton,
infoBanner, memberCountLabel, memberListView, createPromiseButton,
grayBackgroundView
)
bringSubviewToFront(createPromiseButton)
Expand All @@ -121,11 +115,6 @@ final class MeetingInfoView: BaseView {
$0.leading.equalTo(infoBanner)
}

arrowButton.snp.makeConstraints {
$0.trailing.equalToSuperview().offset(-20)
$0.centerY.equalTo(memberCountLabel)
}

memberListView.snp.makeConstraints {
$0.top.equalTo(memberCountLabel.snp.bottom).offset(20)
$0.horizontalEdges.equalToSuperview()
Expand Down

0 comments on commit 540bc17

Please sign in to comment.