Gustavo Gard

Results 26 comments of Gustavo Gard

I’m having the same problem. It doesn’t work on production but it works when we tested via internal app sharing.

FYI: I tested with `internal app sharing` and worked well, thanks!

@sorodrigo @wacii Thanks. Do you know how can I sync `REHYDRATE` to be executed after`Offline/STATUS_CHANGED`. `persistStore` expect a callback as a third param but don't know how can I get...

Hey, could you add an example in expo ? Eg https://snack.expo.dev/@gusgard/react-native-swiper-flatlist

@ithustle i think you are looking for the property `disableGesture=true`

We are not supporting this feature yet

@curtismenmuir thanks for reporting the issue and the work-around, if you could take a deep look at it, it would be great 🙌

@curtismenmuir thanks for reporting the issue and the work-around, if you could take a deep look at it, it would be great 🙌

@navata @anguyen1817 @acheronte did you found a fix for the AppState bug? ``` componentWillUnmount(){ AppState.removeEventListener('change', this.handleAppStateChange.bind(this)); } handleAppStateChange (nextAppState) { if(nextAppState == 'background') { session.logout().then(() => {}); } } ```

A work around I did is to define the function `getItemLayout`, Example on expo: https://snack.expo.io/@gusgard/react-native-swiper-flatlist Code: https://github.com/gusgard/react-native-swiper-flatlist/blob/master/src/components/SwiperFlatList/SwiperFlatList.tsx#L236