UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

How to have fully working only-logo Apple sign in button?

Forums > SwiftUI

So guys I'm currently developing a social media app but the problem is I couldnt find anyway to have fully working customized only icon Apple sign in button.

2      

What have you tried?

2      

@roosterboy this is what I have tried...

 NavigationLink(destination: HomeView().navigationBarBackButtonHidden(true).navigationBarHidden(true), isActive: $isActive2){
                            SignInWithAppleButton(.continue) {request in

                                request.requestedScopes = [.email, .fullName]

                            } onCompletion: { result in

                                switch result {

                                case .success(let auth):

                                    switch auth.credential {
                                    case let credential as ASAuthorizationAppleIDCredential:

                                        let email = credential.email
                                        let firstName = credential.fullName?.givenName
                                        let lastName = credential.fullName?.familyName
                                        let userId = credential.user

                                        self.email = email ?? ""
                                        self.userId = userId ?? ""
                                        self.firstName = firstName ?? ""
                                        self.lastName = lastName ?? ""

                                    default:
                                        break
                                    }

                                case .failure(let error):
                                    print(error.localizedDescription)
                                }

                            } .frame(width: UIScreen.main.bounds.width * 0.18, height: UIScreen.main.bounds.height * 0.08).signInWithAppleButtonStyle(colorScheme == .dark ? .white : .black).cornerRadius(16)

                    }

2      

Hacking with Swift is sponsored by RevenueCat

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.