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
34 lines (33 loc) • 712 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.styles = void 0;
var _reactNative = require("react-native");
const styles = exports.styles = _reactNative.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