2

I am facing issue on login through Google SignIn. Actually not showing keyboard on iOS 13.2.2 at iPhone. Please check below images.enter image description hereenter image description here

Chandan Jee
  • 5,440
  • 4
  • 16
  • 24

1 Answers1

0

Try to set presentingViewController to window.rootViewController in the SceneDelegate:

 let window = UIWindow(windowScene: windowScene)
 window.rootViewController = UIHostingController(rootView: contentView)     
 GIDSignIn.sharedInstance().presentingViewController = window.rootViewController       
 self.window = window
 window.makeKeyAndVisible()
Viktoria
  • 119
  • 6