i6mi6 / react-native-parallax-scroll-view

A ScrollView-like component with parallax and sticky header support.
ISC License
2.28k stars 379 forks source link

Hope to support pull refresh #138

Open ishareme opened 4 years ago

ishareme commented 4 years ago

Hope to support pull refresh ?

filianer commented 4 years ago

I have spent time with this and it is as simple as this: import { RefreshControl } from 'react-native'; ... <ParallaxScrollView refreshControl={<RefreshControl refreshing={loading} onRefresh={onRefreshDataHandler} />} ... />

kalyanijamunkar10 commented 3 years ago

Thank @filianer, This worked for me.