Андрей Гузюк
Андрей Гузюк

Reputation: 2164

how to implement in-app browser with react native?

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? example

Upvotes: 1

Views: 4530

Answers (2)

jdnichollsc
jdnichollsc

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

Louis Lecocq
Louis Lecocq

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

Related Questions