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
29 lines (27 loc) • 557 B
text/typescript
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',
},
});