user17466327
user17466327

Reputation:

How can refresh / reload react native page activity

I have swipe component page that need to reload to see data . I cannot use ScrollView / FlatView with swipe component (RefreshControl) is there another way?

Upvotes: 0

Views: 136

Answers (1)

Narek Ghazaryan
Narek Ghazaryan

Reputation: 3123

If you can't wrap your component with ScrollView/FlatView, maybe the swipe component you're using can give you x/y coordinates? So you can manually calculate and trigger the reload?

If not an alternate option is to add ↻ a button somewhere at the top and handle the reload onClick?

Upvotes: 1

Related Questions