react-native-sticky-range-slider
Version:
[React Native | TypeScript] A pure TypeScript component offering a customizable range slider optimized for performance. It supports dragging functionalities for selecting a range of values, with values that smoothly follow the thumb. This component is ful
16 lines • 424 B
JavaScript
import React, { memo } from 'react';
import { StyleSheet, View } from 'react-native';
import { COLORS } from '../constants/colors';
const Rail = () => /*#__PURE__*/React.createElement(View, {
style: styles.rail
});
export default /*#__PURE__*/memo(Rail);
const styles = StyleSheet.create({
rail: {
flex: 1,
height: 3,
borderRadius: 3,
backgroundColor: COLORS.grey
}
});
//# sourceMappingURL=Rail.js.map