Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Creating a Component in React Native

Tiempo de lectura: 3 minutos

Reading time: 3 minutes

React Native works with components. What does this mean? It means that each element represents an object with its view, properties, and methods. An object is a black box where you input an entry and get an output, regardless of its internal contents.

I’m going to explain how to create a sample component in React Native.

The first thing we need to do is go to our App.js file.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import React from "react";
import {View, Button} from "react-native";
// Button component
const App = () => {
return (
<Text>Hello World</Text>
<Button title="Start" />
)
};
export default App;
import React from "react"; import {View, Button} from "react-native"; // Button component const App = () => { return ( <Text>Hello World</Text> <Button title="Start" /> ) }; export default App;
import React from "react";
import {View, Button} from "react-native";

// Button component
const App = () => {
    return (
       <Text>Hello World</Text>
       <Button title="Start" />
    )
};

export default App;

In this case, I’ve created a text that says “Hello World” and a button that says “Start”.

Now, let’s create a component that represents the button object, which we will customize and import into our App.

To do this, we will create a folder called “components” and inside it, Boton.js.

Now, open Boton.js and add the following code:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import React from "react";
import { StyleSheet, Button } from "react-native";
// Button component
const Boton = () => {
return (
<Button style={styles.button} title="Start" />
)
};
export default Boton;
const styles = StyleSheet.create({
button: {
backgroundColor: '#2145E6',
},
});
import React from "react"; import { StyleSheet, Button } from "react-native"; // Button component const Boton = () => { return ( <Button style={styles.button} title="Start" /> ) }; export default Boton; const styles = StyleSheet.create({ button: { backgroundColor: '#2145E6', }, });
import React from "react";
import { StyleSheet, Button } from "react-native";

// Button component
const Boton = () => {

    return (
        <Button style={styles.button} title="Start" />
    )
};

export default Boton;

const styles = StyleSheet.create({
    button: {
        backgroundColor: '#2145E6',
    },
});

In this case, we have created the button and applied a style that adds a blue background color.

Now, we want our button to have a customized text and also invoke a function when pressed. To do this, let’s make some modifications:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import React from "react";
import { StyleSheet, Button } from "react-native";
// Button component
const Boton = (props) => {
// Constructor parameters are passed through props
const { text, onPress } = props;
return (
<Button style={styles.button} onPress={onPress} title={text} />
)
};
export default Boton;
const styles = StyleSheet.create({
button: {
backgroundColor: '#2145E6',
},
});
import React from "react"; import { StyleSheet, Button } from "react-native"; // Button component const Boton = (props) => { // Constructor parameters are passed through props const { text, onPress } = props; return ( <Button style={styles.button} onPress={onPress} title={text} /> ) }; export default Boton; const styles = StyleSheet.create({ button: { backgroundColor: '#2145E6', }, });
import React from "react";
import { StyleSheet, Button } from "react-native";

// Button component
const Boton = (props) => {

    // Constructor parameters are passed through props
    const { text, onPress } = props;

    return (
        <Button style={styles.button} onPress={onPress} title={text} />
    )
};

export default Boton;

const styles = StyleSheet.create({
    button: {
        backgroundColor: '#2145E6',
    },
});

First, we pass the variable props as the constructor, where we add the attributes we want to pass through the button’s properties.

const Boton = (props) => {
const Boton = (props) => {

Then, we added a constant object with two parameters, text and onPress.

const { text, onPress } = props;
const { text, onPress } = props;

These parameters are received from the component’s properties when we add it to a view, for example:

With this, we can customize the button’s properties when adding it to different screens, similar to creating a new Object(text, onPress) in Java.

onPress={onPress} title={text}
onPress={onPress} title={text}

Finally, I added the variables {onPress} and {text} to refer to the properties being passed.

With all this, we have created our component. Now, we just need to add it to the view in App.js as follows:

  1. Import the component:
    import Boton from '../components/Boton';
  2. Add the component tothe view:
  3. Pass the desired attributes:

This is the modified code of App.js:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import React from "react";
import {View, Button} from "react-native";
// Import the component
import Boton from '../components/Boton';
// Button component
const App = () => {
return (
<Text>Hello World</Text>
<Boton text="Start" onPress="handlePress" />
)
};
// Function to be invoked on button press
function handlePress(){
alert("pressed");
}
export default App ;
import React from "react"; import {View, Button} from "react-native"; // Import the component import Boton from '../components/Boton'; // Button component const App = () => { return ( <Text>Hello World</Text> <Boton text="Start" onPress="handlePress" /> ) }; // Function to be invoked on button press function handlePress(){ alert("pressed"); } export default App ;
import React from "react";
import {View, Button} from "react-native";

// Import the component
import Boton from '../components/Boton';

// Button component
const App = () => {
    return (
       <Text>Hello World</Text>
       <Boton text="Start" onPress="handlePress" />
    )
};
// Function to be invoked on button press
function handlePress(){
   alert("pressed");
}

export default App ;

0

Leave a Comment