Skip to content

Commit

Permalink
💄[MOD] : #139 SNS로그인 UI구현 진짜 완료
Browse files Browse the repository at this point in the history
  • Loading branch information
comeheredart committed Sep 13, 2021
1 parent d17d0de commit 2a873aa
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion ChaRo-iOS/ChaRo-iOS/Source/Views/VCs/SignScene/SNSLoginVC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ class SNSLoginVC: UIViewController {
configureUI()
}

let lookAroundBtn = UIButton().then {
$0.setTitle("둘러보기", for: .normal)
$0.titleLabel?.font = .notoSansMediumFont(ofSize: 14)
$0.setTitleColor(.mainBlue, for: .normal)
$0.contentHorizontalAlignment = .right
}

let logoImageView = UIImageView().then {
$0.image = UIImage(named: "logo")
}
Expand Down Expand Up @@ -82,14 +89,22 @@ class SNSLoginVC: UIViewController {

func configureUI() {

view.addSubviews([logoImageView,
view.addSubviews([lookAroundBtn,
logoImageView,
logoLabel,
appleLoginBtn,
googleLoginBtn,
kakaoLoginBtn,
emailLoginBtn,
emailJoinBtn])

lookAroundBtn.snp.makeConstraints {
$0.top.equalToSuperview().offset(55)
$0.trailing.equalToSuperview().offset(-20)
$0.height.equalTo(21)
$0.width.equalTo(170)
}

logoImageView.snp.makeConstraints {
$0.top.equalToSuperview().offset(273)
$0.centerX.equalToSuperview()
Expand Down

0 comments on commit 2a873aa

Please sign in to comment.