@@ -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