rgovindji / react-native-atoz-list

React Native Listview which handles large data sets and can scroll to sections using an alphabetical scroll list
185 stars 101 forks source link

naive implementation of onEndReached, fix #4 #7

Closed sibelius closed 7 years ago

sibelius commented 7 years ago

add to AtoZList

if we have a lot of items, use should provide a renderWindowBoundaryIndicator method to render a row placeholder

something like this: https://github.com/facebook/react-native/blob/master/Libraries/Experimental/WindowedListView.js#L97

/**
   * Rendered when the list is scrolled faster than rows can be rendered.
   */
  renderWindowBoundaryIndicator?: () => ?React.Element<any>,