一、button点击事件

  1. <Button
  2. title="btn"
  3. onPress={()=>{
  4. Alert.alert("good")
  5. }}
  6. ></Button>
  1. export default class App extends Component {
  2. render() {
  3. return (
  4. <View style={styles.container}>
  5. <Button
  6. title="btn"
  7. onPress={this.handleClick}
  8. ></Button>
  9. </View>
  10. );
  11. }
  12. handleClick=()=>{
  13. Alert.alert("good")
  14. }
  15. }

二、View点击事件

文档

  • View标签不能直接使用onPress
  • 在View外面包裹TouchableHighlight标签 ```javascript 二、事件 - 图1 {item.name}

handleDetail(id){ this.props.navigation.navigate(‘Detail’,{id:id}) console.log(id) } ```