diff --git a/minExample b/minExample
new file mode 100644
index 0000000..9bc7f05
--- /dev/null
+++ b/minExample
@@ -0,0 +1,77 @@
+import React, {useCallback, useState} from 'react';
+import {StyleSheet, Text, View} from 'react-native';
+import Slider from 'rn-range-slider';
+import {moderateScale, SCREEN_WIDTH} from '../constants/scaling';
+import colors from '../constants/theme';
+
+const Thumb = () => {
+ return ;
+};
+
+const Rail = () => {
+ return (
+
+ );
+};
+
+const RailSelected = () => {
+ return ;
+};
+
+const Label = () => {
+ return (
+
+ ia ma label
+
+ );
+};
+
+const Notch = () => {
+ return ;
+};
+const CustomRangeSlider = () => {
+ const [low, setLow] = useState(0);
+ const [high, setHigh] = useState(100);
+ const renderThumb = useCallback(() => , []);
+ const renderRail = useCallback(() => , []);
+ const renderRailSelected = useCallback(() => , []);
+ const renderLabel = useCallback(value => , []);
+ const renderNotch = useCallback(() => , []);
+ const handleValueChange = useCallback((low, high) => {
+ console.log(low, high);
+ setLow(low);
+ setHigh(high);
+ }, []);
+ return (
+
+ );
+};
+
+export default CustomRangeSlider;
+
+const styles = StyleSheet.create({
+ slider: {
+ width: SCREEN_WIDTH - moderateScale(16),
+ marginTop: moderateScale(5),
+ backgroundColor: colors.white,
+ justifyContent: 'center',
+ height: moderateScale(45),
+ },
+});