Closed AndrewDongminYoo closed 1 year ago
Hi @AndrewDongminYoo, thank you for this quick fix. Fixing the spaces between function names and parentheses was overkill though 😄
@VolodymyrBiryuk Ah, even the part that the code formatter touched was reflected in the correction... Actually It was my first time leaving an issue on an others package like this...! Youre right It's like overkill. Thank you for Accept and Comment!!
i think we just need to change ViewPropTypes import to deprecated-react-native-prop-types
in src/carousel/Carousel.js from this
import { Animated, Easing, FlatList, I18nManager, Platform, ScrollView, View, ViewPropTypes } from 'react-native';
to this
import { Animated, Easing, FlatList, I18nManager, Platform, ScrollView, View } from 'react-native';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';
and i found other files need to change too
Hi! ð
Firstly, thanks for your work on this project! ð
Today I used patch-package to patch
react-native-snap-carousel@3.9.1
for the project I'm working on.Here is the diff that solved my problem: