EddyVerbruggen / cordova-plugin-safariviewcontroller

:tiger: :elephant: :crocodile: Forget InAppBrowser for iOS - this is way better for displaying read-only web content in your PhoneGap app
MIT License
282 stars 144 forks source link

iOS Hardware Keyboard not interacting with view #181

Open chustedt opened 3 years ago

chustedt commented 3 years ago

I am opening the SafariViewController in my ionic/react app with these settings, but when we test on an iPhone SE the hardware keyboard does not seem to be working within the window. Any ideas or suggestions on how to make this more accessible to all users?

"@ionic-native/safari-view-controller": "^5.33.1", "cordova-plugin-safariviewcontroller": "^2.0.0",

const optionSafari = {
  url: url,
  showDefaultShareMenuItem: false,
  toolbarColor: '#ffffff',
};
SafariViewController.show(optionSafari).subscribe((result) => {
  if (result?.event === 'closed') {
    this.onCloseFunction();
  }
});