1.0.1 • Published 4 years ago

react-native-mpod-slider v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

npm.io

react-native-reanimated-slider

motivation

The slider from the react-native is not good for video/audio players. If you slide it while the player is playing the file, It will jump a lot between where the file is playing right now and where your finger is, producing very bad UX. this libray uses react-native-reanimated and react-native-gesture-hander to produce 60 fps animations and stops jumping the slider while sliding.

install

first install and link react-native-reanimated and react-native-gesture-hander and then install this packeage. ( I know you can install this packeage first :) )

yarn add react-native-reanimated-slider

or

npm i -s react-native-reanimated-slider

Props

proptypedescription
styleObjecta style object to supply to container view
minimumTrackTintColorStringcolor to fill the progress in the seekbar
maximumTrackTintColorStringcolor to fill the background in the seekbar
cacheTrackTintColorStringcolor to fill the cache in the seekbar
borderColorStringcolor of the seekbar's border
ballon(value)=>Stringgets the value and returns a String for the ballon to display while sliding
progressAnimated.Valuethe current value of the slider
minAnimated.Valuethe minimum value of the slider
cacheAnimated.Valuethe cached value
maxAnimated.Valuethe maximum value of the slider
onSlidingStart()=>voidcallback called when the users starts sliding
onSlidingComplete(value)=>voidcallback called when the users stops sliding
renderBallon()=>React.Nodereturns a React node to render as a ballon
setBallonTexttext=>voidif you use custom Ballon renderer you have to supply this prop to set the text inside the ballon. for better performance you better use a TextInput and setNativeProps. the text argument will be the output from the prop ballon
renderThumbImage()=>React.Nodereturns a React node to render as a slider thumb
thumbOffsetnumberoffset for the thumb from the end of the seekbar

Usage

import Slider from 'react-native-reanimated-slider';
...
render(){
  return (
    <Slider
      style={{ flex: 1 }}
      minimumTrackTintColor="#fff"
      thumbTintColor="#fff"
      ballon={value => this.convertSecondToTime(value)}
      progress={this.currentTime}
      min={new Reanimated.Value(-0.0000000000000000001)}
      cache={this.playableDuration}
      max={this.seekableDuration}
      onSlidingStart={this.slidingStart}
      onSlidingComplete={this.slidingComplete}
    />
  )
}

Ballon

import {Ballon } from 'react-native-reanimated-slider';
...
renderBallon=({text})=>(
  <Ballon 
    text={text}
  >
)

Ballon Props

proptypedescription
containerStyleObjectcontainer style
colorstringcolor of the ballon
textStyleObjectstyle of the text inside the ballon

Enjoy Sliding :)