React Native: Props and Components

0.0(0)
studied byStudied by 0 people
0.0(0)
linked notesView linked note
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering core concepts about React Native, focusing on props and component behavior.

Last updated 1:16 PM on 8/19/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

React Native

A framework for building native mobile apps using React; renders native UI components instead of web HTML.

2
New cards

Component

A reusable building block in React Native that represents a piece of UI; can be a function (functional) or a class.

3
New cards

Props

Inputs passed from a parent component to a child component; they are read-only inside the child.

4
New cards

State

Data owned by a component that can change over time and trigger re-renders.

5
New cards

JSX

Syntax extension for JavaScript used to describe UI in React Native; resembles HTML and compiles to React elements.

6
New cards

View

Core container component in React Native used for layout, similar to a div in web development.

7
New cards

Text

Core component for displaying text content in React Native.

8
New cards

StyleSheet

API for creating and organizing style objects that style React Native components.

9
New cards

Children

Prop that contains nested elements/components passed between a component’s opening and closing tags.

10
New cards

PropTypes

Runtime type checking for props (usually via the prop-types library) to catch errors.

11
New cards

Default Props

Prop values automatically used when a parent does not provide a prop.

12
New cards

Flexbox

Layout model used by React Native to arrange components in rows or columns.