Skip to content

Commit

Permalink
Update example app with 3 thumbs example
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Gornick committed Oct 4, 2018
1 parent 092ac3b commit 86dc9a1
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions Example/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ var SliderExample = React.createClass({
<Slider />
</SliderContainer>
<SliderContainer
caption='<Slider/> with default style and multiple thumbs'
caption='<Slider/> with default style and two thumbs'
value={[0.2, 0.5]}
>
<Slider />
</SliderContainer>
<SliderContainer
caption='<Slider/> with custom style #5 and multiple thumbs'
caption='<Slider/> with custom style #5 and two thumbs'
value={[0.2, 0.5]}
>
<Slider
Expand All @@ -89,6 +89,16 @@ var SliderExample = React.createClass({
minimumTrackTintColor='#0088bb'
/>
</SliderContainer>
<SliderContainer
caption='<Slider/> with custom style #5 and multiple thumbs'
value={[0.25, 0.5, 0.75]}
>
<Slider
trackStyle={customStyles5.track}
thumbStyle={customStyles5.thumb}
minimumTrackTintColor='#0088bb'
/>
</SliderContainer>
<SliderContainer caption='<Slider/> with min, max and custom tints '>
<Slider
minimumValue={-10}
Expand Down

0 comments on commit 86dc9a1

Please sign in to comment.