소셜 로그인

- 아이콘 추가
- Sign In Apple 활성화
This commit is contained in:
Yu Sung 2025-04-10 16:09:04 +09:00
parent 80a85ebe76
commit 7e44bb8be3
11 changed files with 116 additions and 0 deletions

View File

@ -4,6 +4,10 @@
<dict> <dict>
<key>aps-environment</key> <key>aps-environment</key>
<string>development</string> <string>development</string>
<key>com.apple.developer.applesignin</key>
<array>
<string>Default</string>
</array>
<key>com.apple.developer.associated-domains</key> <key>com.apple.developer.associated-domains</key>
<array> <array>
<string>applinks:voiceon-test.onelink.me</string> <string>applinks:voiceon-test.onelink.me</string>

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "ic_login_apple.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "ic_login_email.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "ic_login_google.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "ic_login_kakao.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -4,6 +4,10 @@
<dict> <dict>
<key>aps-environment</key> <key>aps-environment</key>
<string>development</string> <string>development</string>
<key>com.apple.developer.applesignin</key>
<array>
<string>Default</string>
</array>
<key>com.apple.developer.associated-domains</key> <key>com.apple.developer.associated-domains</key>
<array> <array>
<string>applinks:voiceon.onelink.me</string> <string>applinks:voiceon.onelink.me</string>

View File

@ -114,6 +114,30 @@ struct LoginView: View {
} }
.padding(.top, 20) .padding(.top, 20)
HStack(spacing: 13.3) {
Image("ic_login_email")
.onTapGesture {
hideKeyboard()
AppState.shared.setAppStep(step: .signUp)
}
Image("ic_login_kakao")
.onTapGesture {
hideKeyboard()
}
Image("ic_login_google")
.onTapGesture {
hideKeyboard()
}
Image("ic_login_apple")
.onTapGesture {
hideKeyboard()
}
}
.padding(.top, 20)
Spacer() Spacer()
} }
.onAppear { .onAppear {