Dismiss ios keyboard before app goes to background (#911)

Godwin Asuquo committed May 2, 2023 at 16:30 UTC 0a35e5c3e17c50bcfe40bb7eac6671299d075848
1 file changed +1
ios/Runner/AppDelegate.swift
+1
@@ -107,6 +107,7 @@ import UnstoppableDomainsResolution
107 }
108
109 override func applicationWillResignActive(_: UIApplication ) {
110 + self.window?.rootViewController?.view.endEditing(true)
111 self.window?.isHidden = true;
112 }
113