Skip to content

Commit c30a6d8

Browse files
committed
🚚 [style] μ£Όμ†Œ μ„€μ •μ—μ„œ μ£Όμ†Œ 선택 μ‹œ λ‚˜μ˜€λŠ” λ²„νŠΌ μŠ€νƒ€μΌ μˆ˜μ •
- 선택 > λ³€κ²½μœΌλ‘œ 타이틀 λ³€κ²½ 및 λ²„νŠΌ λ„ˆλΉ„ μˆ˜μ •
1 parent 00e378d commit c30a6d8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

β€ŽFitfty/Projects/MainFeed/Sources/Main/Address/ViewController/AddressViewController.swiftβ€Ž

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,21 +83,26 @@ public final class AddressViewController: UIViewController {
8383
}()
8484

8585
private lazy var buttonStackView: UIStackView = {
86-
let stackView = UIStackView(axis: .horizontal, alignment: .fill, distribution: .fillEqually, spacing: 8)
86+
let stackView = UIStackView(axis: .horizontal, alignment: .fill, distribution: .fill, spacing: 8)
8787
stackView.backgroundColor = .white
8888
stackView.addArrangedSubviews(backButton, selectButton)
8989
stackView.alpha = 0
9090
return stackView
9191
}()
9292

9393
private lazy var selectButton: FitftyButton = {
94-
let button = FitftyButton(style: .enabled, title: "선택")
94+
let button = FitftyButton(style: .enabled, title: "λ³€κ²½")
95+
button.widthAnchor.constraint(equalToConstant: 194).isActive = true
9596
button.addTarget(self, action: #selector(didTapSelectButton(_:)), for: .touchUpInside)
9697
return button
9798
}()
9899

99100
private lazy var backButton: FitftyButton = {
100101
let button = FitftyButton(style: .enabled, title: "λ’€λ‘œκ°€κΈ°")
102+
button.setTitleColor(CommonAsset.Colors.gray05.color, for: .normal)
103+
button.backgroundColor = .white
104+
button.layer.borderColor = CommonAsset.Colors.gray02.color.cgColor
105+
button.layer.borderWidth = 1
101106
button.addTarget(self, action: #selector(didTapBackButton(_:)), for: .touchUpInside)
102107
return button
103108
}()

0 commit comments

Comments
Β (0)