Code Monkey home page Code Monkey logo

react-native-multi-slider's Introduction

react-native-multi-slider

Note: Anyone using RN <=0.18 should use version 0.2.5

NPM

Pure JS react native slider component with one or two markers. Options to customise track, touch area and provide customer markers and callbacks for touch events and value changes.

Examples

Open iOS/Slider.xcodeproj with Xcode, then press Cmd + R; you may edit index.ios.js to try building your own custom sliders. Feel free to make a PR if you are particularly proud of your slider and want it to feature. (Shortcut npm run open:xcode)

Slider Examples

Getting Started

Installation

$ npm i react-native-multi-slider --save

Properties

Basic Setup & Values

Prop Default Type Description
values [0] array An array containing one or two values (determines one or two markers respectively) that are the initial marker values. Note these must be possible values from your set up.
min 0 number Slider min value corresponding to far left
max 10 number Slider max value corresponding to far right
step 1 number The step size between values. Make sure min max range is divisible by this to get expected results
optionsArray - array Array of values corresponding to the slider's position (left to right on slider index 0 to end respectively). Values of any type can be inserted and the slider will simply give them back in the callbacks

Event Callbacks

Prop Default Type Description
onValuesChangeStart console.log... function() Function to be called at beginning of press
onValuesChange console.log... function(valuesArray) Function called after every change in value, with current values passed in as an array.
onValuesChangeFinish console.log... function(valuesArray) Function called on end of press with final values passed in as an array

Slider Boundaries

Prop Default Type Description
sliderLength 280 number Width of track
touchDimensions { height: 30, width: 30, borderRadius: 15, slipDisplacement: 30 }, object Area to be touched, should enclose the whole marker. Will be automatically centered and contain the marker. Slip displacement If finger leaves the marker measures distance before responder cuts out and changes are no longer registered, if not given marker will be active until pressed released.
sliderOrientation horizontal horizontal or vertical TODO

Custom Style

Prop Default Type Description
containerStyle {height:30} object Style of sliders container, note be careful in applying styles that may affect the children's (i.e. the slider's) positioning
trackStyle { borderRadius: 7, height: 3.5 } object Customise the track
selectedStyle {backgroundColor: 'blue'} object Style for the track up to a single marker or between double markers
unselectedStyle {backgroundColor: 'grey'} object Style for remaining track
markerStyle { height:30, width: 30, borderRadius: 15, backgroundColor:'#E8E8E8', borderWidth: 0.5, borderColor: 'grey'} object Customise the marker's style
pressedMarkerStyle {backgroundColor:'#D3D3D3'} object Style to be given to marker when pressed

Questions & Suggestions

Feel free to create an issue x

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.