alexbrillant / react-native-deck-swiper

tinder like react-native deck swiper
ISC License
1.56k stars 464 forks source link

Adding support for compatibility with RN <0.65 #387

Closed mlabisi closed 2 years ago

mlabisi commented 2 years ago

Are you seeing this error when trying to use this awesome package in your expo SDK 43 based project?

TypeError: Cannot read properties of undefined (reading 'remove')

This error is located at:
    in Swiper (created by ...)
    ...

image

This is because dimensionsChangeSubscription relies on React Native's Dimensions.addEventListener API. However, the SDK 43 release of expo depends on react-native v0.62.2, and the Dimentions API differs between versions < and >= RN v0.65.

mlabisi commented 2 years ago

Oops! Opened this PR in the wrong repo. Correct PR is here https://github.com/webraptor/react-native-deck-swiper/pull/81