To create a scrollable list in React Native, you would use the ________ component.
- Button
- FlatList
- ScrollView
- TextInput
In React Native, to create a scrollable list, you would typically use the ScrollView component. ScrollView provides a container for scrolling content, allowing you to display a list of items that can be scrolled through vertically or horizontally. TextInput, Button, and FlatList are not typically used for creating scrollable lists in React Native.
Loading...
Related Quiz
- What is the main drawback of overusing Render Props in a React application?
- How does the use of Immutable.js impact the performance of a React application compared to using native JavaScript objects?
- The Redux concept that ensures every action returns a new state object, ensuring immutability, is called ________.
- What is the primary purpose of Jest in the React ecosystem?
- What is the purpose of middleware in Redux?