A cross-platform (iOS / Android), full-featured in-app web browser component for React Native that is highly customizable. Currently you can hide the address-, status- and toolbar. Additionally the foreground and background colors can be modified.
npm i react-native-webbrowser --save
Here is an extensive overview of the component usage.
class SampleApp extends Component {
render() {
return (
<View style={{paddingTop:20, flex:1}}>
<Webbrowser
url="https://your-url.com"
hideHomeButton={false}
hideToolbar={false}
hideAddressBar={false}
hideStatusBar={false}
foregroundColor={'#efefef'}
backgroundColor={'#333'}
onActionButton={(firstUrl, loader) => {
// do something
// you can load the first url with loader(firstUrl);
}}
renderHomeButton={(style) => {
// custom action button
return (
<View style={[]}>
<Text style={{color:'white'}}>Done</Text>
</View>
)
}}
/>
</View>
);
}
}
url - string
required, web addresshideAddressBar - bool
optional, hides the address bar / address inputhideStatusBar - bool
optional, hides the status bar / site titlehideToolbar - bool
optional, hides the toolbar (nav bar)hideHomeButton - bool
optional, hides just the home button from the toolbarhideActivityIndicator - bool
optional, hides the activity indicator (loading) overlayforegroundColor - string
optional, sets the forground color of text and icon elementsbackgroundColor - string
optional, sets the background coloronNavigationStateChange - function(navState)
optional, url change callbackonShouldStartLoadWithRequest - function(event)
optional, return false if the request should be stoppedonActionButton - function(firstUrl, loader)
optional, handle touch on action buttonrenderHomeButton - function(fallbackStyle)
optional, return your custom component for action button
- New
- Before