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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iOS Hardware Keyboard not interacting with view

chustedt opened this issue · comments

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();
  }
});