naoufal / react-native-safari-view

A React Native wrapper for Safari View Controller.
https://www.npmjs.com/package/react-native-safari-view
494 stars 110 forks source link

Layout issues with iPhone X #95

Open brunolemos opened 6 years ago

brunolemos commented 6 years ago

The content is visible behind the top bar:

image

Related: https://stackoverflow.com/q/49431656/2228575

n1ru4l commented 5 years ago

As a workaround you can show/hide the status bar:

https://facebook.github.io/react-native/docs/statusbar


// show safari view
StatusBar.setHidden(false)

// when safari view is hidden
StatusBar.setHidden(true)