react-native-dznwebview
v0.1.3
Published
An iPhone/iPad web browser module for React Native, based on DZNWebViewController
Downloads
4
Maintainers
Readme
react-native-dznwebview
An iPhone/iPad web browser module for React Native, based on DZNWebViewController
Installation
- Run
npm install react-native-browser --save
in your project directory.
- Make sure you have the
WebKit
framework included in your XCode project - Open your project in XCode, right click on
Libraries
and clickAdd Files to "Your Project Name"
- Inside your node_modules, find react-native-dznwebview and add
RCTDZNWebView.xcodeproj
to your project. - Add
libDZNWebView.a
toBuild Phases -> Link Binary With Libraries
- Whenever you want to use it within your React code -
import WebView from 'react-native-dznwebview'
Usage
// at the top of your file near the other imports
import WebView from 'react-native-dznwebview'
...
// wherever you want to trigger a browser modal appearing
WebView.open('https://google.com/');
// or with custom options
Browser.open('http://google.com/', {
showLoadingProgress: true,
allowHistory: true,
hideBarsWithGestures: true,
});
License
(The MIT License)
Copyright (c) 2016 Michal Siwek
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.