UNPKG

react-native-corner-smoothing

Version:

Multiplatform corner smoothing view for React Native (iOS continuous corners + Android Bézier rounding)

10 lines (6 loc) 284 B
import { Platform, requireNativeComponent, View } from 'react-native'; import { IOSCornersView } from 'react-native-ios-corners'; const NativeSmoothedCard = Platform.OS === 'android' ? requireNativeComponent('SmoothedCard') : IOSCornersView; export default NativeSmoothedCard;