xinthink / rnmk-demo

react-native-material-kit demo
80 stars 44 forks source link

Can't change color for range sliders #26

Open wmortume opened 4 years ago

wmortume commented 4 years ago

I can't change the color marker or the track color of the range slider using borderColor and backgroundColor. What props am I suppose to use to change them separately?

<MKRangeSlider
 style={{ backgroundColor: Themes.primaryTheme }}
 min={18}
 max={100}
 minValue={this.state.minAge}
 onChange={values =>
  this.setState({
   minAge: values.min.toFixed(0) * 1,
    maxAge: values.max.toFixed(0) * 1
  })}
/>