I want to customize Google Sign-In button like below:-
I have tried below links, but none of them helped really much:-
How to customize google sign in button?
ht
In GoogleSignIn SDK 5.0 and above GIDSignInUIDelegate has been revoked
Add this below line, for custom google login button
@IBAction func googleLoginPressed(sender: UIButton) {
GIDSignIn.sharedInstance()?.presentingViewController = self
GIDSignIn.sharedInstance()?.delegate = self
GIDSignIn.sharedInstance()?.signIn()
}