Reputation: 2164
How to make in-app browser in react-native?
Basically we are opening our website in default browser like so Linking.openUrl
.
But i need to implement in-app browser ( Web Page within an app ).
How do i can do it?
Upvotes: 1
Views: 4530
Reputation: 1569
You can use the new InAppBrowser system for React Native, using SafariViewController and ChromeTabs to support both platforms (iOS and Android).
Upvotes: 0
Reputation: 1814
What i did in my app is couple a Modal with a WebView
So your user do not leave the app
Upvotes: 3