### Handle Slider Touch Start in RN Range Slider Source: https://github.com/githuboftigran/rn-range-slider/blob/master/README.md Callback executed when a user initiates interaction with the slider. It provides the current low and high values at the start of the touch. The high value is disregarded if `disableRange` is enabled. ```TypeScript onSliderTouchStart: (low: number, high: number) => void; ``` -------------------------------- ### Implement RN Range Slider with Custom Components Source: https://context7.com/githuboftigran/rn-range-slider/llms.txt Demonstrates how to integrate the RangeSlider component into a React Native application. It shows the setup for custom rendering of thumbs, rails, labels, and notches, along with handling value changes and touch events. This example requires React Native and the 'rn-range-slider' library. ```tsx import React, { useCallback, useState } from 'react'; import { View, Text, StyleSheet } from 'react-native'; import RangeSlider from 'rn-range-slider'; // Custom thumb component const Thumb = () => ( ); // Custom rail (background track) const Rail = () => ( ); // Custom selected rail (highlighted track) const RailSelected = () => ( ); // Custom label showing the value const Label = ({ text }) => ( {text} ); // Custom notch (small triangle below label) const Notch = () => ( ); const App = () => { const [low, setLow] = useState(20); const [high, setHigh] = useState(80); const renderThumb = useCallback(() => , []); const renderRail = useCallback(() => , []); const renderRailSelected = useCallback(() => , []); const renderLabel = useCallback((value) =>