A Simple React Native Nitro module for in-app browser.
Important
This package requires react-native-nitro-modules
to be installed first.
See react-native-nitro-modules for more information.
bun install react-native-nitro-in-app-browser react-native-nitro-modules
cd ios && pod install && cd ..
import React from 'react';
import { Button, SafeAreaView } from 'react-native';
import { NitroInAppBrowser } from 'react-native-nitro-in-app-browser';
const App = () => {
return (
<SafeAreaView>
<Button
title="Open Google"
onPress={() => {
NitroInAppBrowser.open('https://www.google.com');
}}
/>
</SafeAreaView>
);
};
export default App;
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with ❤️ by Patrick Kabwe.
This package is based on the react-native-nitro-modules package.