Rangle.io: React Native Workshop
gitbook
gitbook
  • Introduction
  • Setup
    • Hello World
    • Debugging
  • Core Concepts
    • Components
    • Styles
    • Flexbox
    • APIs
  • Navigation
    • Navigation Experimental
    • Creating Some Helpers
    • The Navigator Component
  • ListView (Pokédex)
    • List View
    • List View: Render Row
    • Text Input
    • Keyboard Spacer
  • Selectors (Filtering)
  • Animation
    • LayoutAnimation
    • Animated
      • Animated.Value
      • Timing, Spring & Decay
      • Animated Components
      • More Animated
    • Resources
    • Exercise
  • ScrollView (Pokemon Details)
  • MapView
  • Testing
  • Gesture Responder System
    • PanResponder
Powered by GitBook
On this page

Was this helpful?

ListView (Pokédex)

PreviousThe Navigator ComponentNextList View

Last updated 6 years ago

Was this helpful?

Now that we have our navigator in place, we can start building out our components. First on the menu will be the Pokedex component defined as the default in our Navigator, and we'll define Pokedex as a container component at /src/containers/Pokedex.js.

We'll chiefly be using a , a React Native core component that extends a more primitive , and primarily allows us to efficiently display long lists of data.

ListView
ScrollView