Basic Components
Learn more about React Native basic components at React Native Components.
React Native Basic Components
| Component | Description |
|---|---|
View | The most fundamental component for building a UI. |
Text | A component for displaying text. |
Image | A component for displaying an images. |
TextInput | A component for inputting text into the app via a keyboard. |
ScrollView | Provides a scrolling container that can host multiple components and views. |
StyleSheet | Provides an abstraction layer similar to CSS stylesheets. |
Button | A basic button component for handling touches that should render nicely on different platforms. |
Pressable | A more customizable button component that can detect various stages of press interactions. |
FlatList | A high-performance scrolling list component for rendering large lists of data efficiently. |
Switch | Renders a boolean input. |