Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Props | Common Principles
Foundations of React Native
course content

Conteúdo do Curso

Foundations of React Native

Foundations of React Native

1. Introduction
2. Basic Concepts
3. Common Principles
4. Advanced Concepts

Props

Theory

Props (short for properties) are a way to pass data from a parent component to a child component. They are similar to function arguments. Props allow you to customize and configure child components based on the requirements of the parent component.

Why do we need Props?

Props make components reusable and configurable. They enable the parent component to communicate with its children by passing data and functionality to them.

Working with Props

Passing Props

We pass props by including them as attributes when we use a component.

In this example, the ParentComponent passes a prop called message with the value 'Hello from parent' to ChildComponent.

Receiving Props

In the receiving component (ChildComponent in this case), we can access the passed props as properties of the props object.

The ChildComponent receives the message prop and renders it within a Text component.

Default Props

We can define default values for props in case they are not provided.

Here, if message is not provided as a prop, it defaults to 'Default Message'.

Example

Consider a scenario where we have a UserProfile component that receives user data as props.

Now, when we use UserProfile in the App component, we can pass user data as props:

In Practice

Tudo estava claro?

Seção 3. Capítulo 2
We're sorry to hear that something went wrong. What happened?
some-alt