rn-inkpad
Version:
<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />
50 lines (49 loc) • 1.21 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.sliderStyles = exports.slideStyles = void 0;
const react_native_1 = require("react-native");
exports.slideStyles = react_native_1.StyleSheet.create({
container: {
width: '100%',
justifyContent: 'center',
borderRadius: 100,
overflow: 'hidden',
},
text: { fontWeight: '600', fontSize: 16 },
thumb: {
height: '100%',
justifyContent: 'center',
alignItems: 'center',
position: 'absolute',
borderRadius: 100,
zIndex: 1,
},
});
exports.sliderStyles = react_native_1.StyleSheet.create({
container: {
width: '100%',
justifyContent: 'center',
overflow: 'visible',
},
track: {
height: '100%',
position: 'absolute',
zIndex: -1,
},
thumb: {
justifyContent: 'center',
alignItems: 'center',
position: 'absolute',
zIndex: 1,
},
shadow: {
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 3,
},
shadowOpacity: 0.29,
shadowRadius: 4.65,
elevation: 7,
},
});