/** * The examples provided by Facebook are for non-commercial testing and * evaluation purposes only. * * Facebook reserves all rights not expressly granted. * * 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 NON INFRINGEMENT. IN NO EVENT SHALL * FACEBOOK 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. */ 'use strict'; var React = require('react-native'); var { IntentAndroid, StyleSheet, Text, TouchableNativeFeedback, View, } = React; var UIExplorerBlock = require('./UIExplorerBlock'); var OpenURLButton = React.createClass({ propTypes: { url: React.PropTypes.string, }, handleClick: function() { IntentAndroid.canOpenURL(this.props.url, (supported) => { if (supported) { IntentAndroid.openURL(this.props.url); } else { console.log('Don\'t know how to open URI: ' + this.props.url); } }); }, render: function() { return ( Open {this.props.url} ); } }); var IntentAndroidExample = React.createClass({ statics: { title: 'IntentAndroid', description: 'Shows how to use Android Intents to open URLs.', }, render: function() { return ( ); }, }); var styles = StyleSheet.create({ container: { flex: 1, backgroundColor: 'white', padding: 10, paddingTop: 30, }, button: { padding: 10, backgroundColor: '#3B5998', marginBottom: 10, }, text: { color: 'white', }, }); module.exports = IntentAndroidExample;