3 April 2020

Passing parameter via onclick event in React Native

  • Create Components folder under src folder
  • Add PassingParameterViaOnclick.js file and add below Code
import React from "react";
import { ButtonTextView } from "react-native";

const onClickEvent = (idname=> e => {
  alert(id);
  alert(name);
};

const PassingParameterViaOnclick = () => {
  return (
    <View>
      <Text>React passing parameter via onclick event </Text>
      <Button
        title="Submit"
        value="buttonValue"
        onPress={onClickEvent(10"Adi")}
      />
    </View>
  );
};

export default PassingParameterViaOnclick;
  • Open App.js file and update code as below\
import React from 'react';
import { View,StyleSheet } from 'react-native';
import PassingParameterViaOnclick from './src/components/PassingParameterViaOnclick'

 const  App=()=> {
  return (
    <View style={styles.container}>
      <PassingParameterViaOnclick/>
    </View>
  );
}
export default App;

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    paddingTop:80
  },
});

Output:

No comments:

Post a Comment