/** * Sample React Native App * https://github.com/facebook/react-native */ 'use strict'; import React from 'react-native'; import ToolTip from 'react-native-tooltip'; const { AppRegistry, StyleSheet, Text, View, AlertIOS, } = React; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#F5FCFF', }, welcome: { fontSize: 20, textAlign: 'center', margin: 10, }, instructions: { textAlign: 'center', color: '#333333', marginBottom: 5, }, }); class Example extends React.Component { handleCopyPress() { AlertIOS.alert(`Copy has been pressed!`); } handleOtherPress() { AlertIOS.alert(`Other has been pressed!`); } render() { return ( Press Here. ); } } AppRegistry.registerComponent('Example', () => Example);