SliderWithLine 滑动选择器 4.6.0+
SliderWithLine
是带刻度的滑动选择器。
代码演示
水平滑动选择器
import { SliderWithLine } from 'tuya-panel-kit'<SliderWithLinestepValue={1}onSlidingComplete={value => console.log(value, 'res')}style={{ marginBottom: 20 }}nounWidth={2}nounColor="#F84803"activeNounColor="#fff"backgroundColor="#E5E5E5"activeBackgroundColor="#F84803"/><SliderWithLinestepValue={10}maxValue={80}minDisabled={false}onSlidingComplete={value => console.log(value, 'res')}nounColor="#F84803"activeNounColor="#fff"backgroundColor="#E5E5E5"activeBackgroundColor="#F84803"/>
竖直滑动选择器
import { SliderWithLine, Utils } from 'tuya-panel-kit'const { convertX: cx } = Utils.RatioUtils;<SliderWithLinehorizontal={false}onSlidingComplete={value => console.log(value, 'res')}nounColor="#F84803"activeNounColor="#fff"backgroundColor="#E5E5E5"activeBackgroundColor="#F84803"nounWidth={cx(14)}nounHeight={cx(1)}width={cx(60)}height={cx(327)}style={{ marginRight: 20 }}/><SliderWithLineminDisabled={false}stepValue={10}horizontal={false}minValue={10}nounColor="#F84803"activeNounColor="#fff"backgroundColor="#E5E5E5"activeBackgroundColor="#F84803"maxValue={80}onSlidingComplete={value => console.log(value, 'res')}nounWidth={cx(14)}nounHeight={cx(1)}width={cx(60)}height={cx(327)}/>