import * as React from 'react'; import { Platform, Text, TouchableHighlight, TouchableNativeFeedback, TouchableOpacity, View, } from 'react-native'; import { Page, Section } from '../components/Page'; import Colors from '../constants/Colors'; export default function TouchablesScreen() { const buttonStyle = { paddingHorizontal: 25, paddingVertical: 20, marginRight: 10, backgroundColor: Colors.tintColor, borderRadius: 5, }; const buttonText = { color: '#fff', }; return (
{}}> Highlight!
{}}> Opacity!
{Platform.OS === 'android' && (
{}} delayPressIn={0}> Native feedback!
)}
); } TouchablesScreen.navigationOptions = { title: 'Touchables', };