마이페이지 추가
This commit is contained in:
27
SodaLive/Sources/MyPage/Auth/AuthButtonView.swift
Normal file
27
SodaLive/Sources/MyPage/Auth/AuthButtonView.swift
Normal file
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// AuthButtonView.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/10.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct AuthButtonView: View {
|
||||
var body: some View {
|
||||
Text("본인인증")
|
||||
.font(.custom(Font.bold.rawValue, size: 15.3))
|
||||
.foregroundColor(Color(hex: "eeeeee"))
|
||||
.padding(.horizontal, 13.3)
|
||||
.padding(.vertical, 20)
|
||||
.frame(width: screenSize().width - 26.7, alignment: .leading)
|
||||
.background(Color(hex: "664aab"))
|
||||
.cornerRadius(6.7)
|
||||
}
|
||||
}
|
||||
|
||||
struct AuthButtonView_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
AuthButtonView()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user