Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <ListView
  2. removeClippedSubviews={false}
  3. automaticallyAdjustContentInsets={false}
  4. accessible={true}
  5. ref={c => {
  6. this._listView = c;
  7. }}
  8. onRefresh={() => doRefresh()}
  9. onEndReachedThreshold={0.005}
  10. onEndReached={customTransactions}
  11. dataSource={dataSource}
  12. renderRow={renderRow}
  13. refreshControl={
  14. <RefreshControl refreshing={refresh} onRefresh={() => doRefresh()} />
  15. } />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement