react-native-momentum-carousel
Version:
A React Native carousel component enables smooth and interactive image or content sliders with swiping capabilities. Ideal for showcasing multiple items or images in a compact space, this carousel can be customized with features like infinite scrolling, p
30 lines (29 loc) • 598 B
JavaScript
"use strict";
import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
container: {
justifyContent: 'center',
alignItems: 'center'
},
itemContainer: {
justifyContent: 'center',
alignItems: 'center'
},
paginationContainer: {
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
marginVertical: 15
},
bullet: {
width: 10,
height: 10,
borderRadius: 5,
backgroundColor: '#888',
marginHorizontal: 5
},
activeBullet: {
backgroundColor: '#000'
}
});
//# sourceMappingURL=style.js.map