Introduction to List View
Get an introduction to the list view components provided by React Native.
We'll cover the following...
React Native provides the ScrollView
component for displaying data that can be scrolled vertically and horizontally. However, this comes at the cost of performance because the ScrollView
renders all of its child components at once, even if they are not visible on the screen. This is where the list view components come in. ...