machadogj / react-native-carousel-control

React Native Carousel control with support for iOS and Android
MIT License
247 stars 55 forks source link

Use ViewPropTypes instead of View.propTypes, as it is deprecated. Fall back if not available. #31

Closed jjzazuet closed 6 years ago

jjzazuet commented 6 years ago
import { View, ViewPropTypes as RNViewPropTypes } from 'react-native';

const ViewPropTypes = RNViewPropTypes || View.propTypes;

export default ViewPropTypes;

Thanks!

jjzazuet commented 6 years ago

My bad... different report for yet another component affected by RN 0.49+. Apologies and thanks.