react-native-mybrowser
v1.1.2
Published
web browser module for React Native
Maintainers
Readme
react-native-mybrowser
A web browser component for React Native.
Install
npm install react-native-mybrowserUsage
'use strict';
import React, {
Component,
View
} from 'react-native';
import WebBrowser from 'react-native-mybrowser';
export default class ReactNativeMybrowserDemo extends Component {
render() {
return (
<WebBrowser
url='https://facebook.github.io/react-native'
backgroundColor='rgb(50, 180, 280)'
/>
);
}
}Required props
|props |description | |--- |--- | |url |web address | |backgroundColor|background color of the header and footer|
Sample

