본문 바로가기

Study/ETC

[React Native] Slider

Android 의 SeekBar랑 비슷한 함수

예시

<Slider 
     ref={slider => { this.mySeekBar = slider; }}
     style={styles.slider}
     step={1}
     minimumValue={0}
     maximumValue={this.state.seekbarMax}
     minimumTrackTintColor="#0096"
     thumbTintColor='#0096'
     onValueChange={(value) => this.handleSeekBarChange(value)}
     onSlidingComplete={(value) => this.handleSeekBarComplete(value)}
     />



Android SeekBar setProgress 와 같은 기능
눈 앞에 두고 계속 다른 거 봐서 헤맸다..ㅠㅠ

this.mySeekBar.setNativeProps({value: current});






https://facebook.github.io/react-native/docs/slider.html

'Study > ETC' 카테고리의 다른 글

MVC MVP MVVM MVI  (0) 2020.09.10
리눅스 명령어  (0) 2019.06.12
[React Native] Run iOS Device with expo  (0) 2019.06.03
React Native  (0) 2019.06.03
[Cordova] Cordova 설치 및 특정 버전으로 설치  (0) 2019.05.29