import React from 'react';
import { Button, View, Text, Image } from 'react-native';
import { StackNavigator } from 'react-navigation'; // Version can be specified in package.json
class HomeScreen extends React.Component {
render() {
return (
<View style={{height:100, backgroundColor:'#263137'}}>
<View style={{width: 20, height:20, backgroundColor:'red'}}>
</View>
</View>
);
}
}
我知道有 onPress,但它只适用于按钮。如何在红色方块上做一个老生常谈的点击??????

将视图包裹在 TouchableHighlight 组件中