UNPKG

react-native-snap-carousel-v4

Version:

Original project: https://github.com/meliorence/react-native-snap-carousel I made this package because I need the version 4 package to be published, so that I can run EAS Build on my expo app, previously I was pointing directly to the v4 branch on the ori

23 lines 623 B
import { StyleSheet } from 'react-native'; const DEFAULT_DOT_SIZE = 7; const DEFAULT_DOT_COLOR = 'rgba(0, 0, 0, 0.75)'; export default StyleSheet.create({ sliderPagination: { alignItems: 'center', justifyContent: 'center', paddingHorizontal: 20, paddingVertical: 30 }, sliderPaginationDotContainer: { alignItems: 'center', justifyContent: 'center', marginHorizontal: 8 }, sliderPaginationDot: { width: DEFAULT_DOT_SIZE, height: DEFAULT_DOT_SIZE, borderRadius: DEFAULT_DOT_SIZE / 2, backgroundColor: DEFAULT_DOT_COLOR } }); //# sourceMappingURL=Pagination.style.js.map