A web browser component for React Native.
npm install react-native-mybrowser
'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)'
/>
);
}
}
props | description |
---|---|
url | web address |
backgroundColor | background color of the header and footer |
![](./assets/images/Simulator Screen Shot May 10, 2016, 12.26.03 AM.png)