npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@adalo/react-native-multi-slider

v2.2.3-alpha.0

Published

Android and iOS supported pure JS slider component with multiple markers for React Native

Downloads

684

Readme

react-native-multi-slider

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

Examples

cd example/Basic
npm install
react-native run-ios
react-native run-android

Example

Getting Started

Installation

$ npm install --save @ptomasroos/react-native-multi-slider

Usage in a ScrollView

 enableScroll = () => this.setState({ scrollEnabled: true });
 disableScroll = () => this.setState({ scrollEnabled: false });

 render() {
   return (
     <ScrollView scrollEnabled={this.state.scrollEnabled}>
      <MultiSlider
        ...
        onValuesChangeStart={this.disableScroll}
        onValuesChangeFinish={this.enableScroll}
      />
    </ScrollView>
    );

shape up CustomMarker as left and right

In order to make different styles on markers you can set isMarkersSeparated to true, define customMarkerLeft and customMarkerRight in MultiSlider. for example:

<MultiSlider
    ...
    isMarkersSeparated={true}

    customMarkerLeft={(e) => {
         return (<CustomSliderMarkerLeft
          currentValue={e.currentValue}/>)
    }}

    customMarkerRight={(e) => {
         return (<CustomSliderMarkerRight
         currentValue={e.currentValue}/>)
    }}
/>

Partial report of the props

Feel free to contribute to this part of the documentation.

| Prop name | Default value | Type | Purpouse | |:---------------------------------------------------------------------------------:|:-------------------------------------------------------------:|:-----------------:|:---------------------------------------:| | values | [0] | array of numbers | Prefixed values of the slider. | | onValuesChangeStart | () => {} | function | Callback when the value starts changing | | onValuesChange | () => {} | function | Callback when the value changes | | onValuesChangeFinish | (values) => {} | function | Callback when the value stops changing | | sliderLength | 280 | number | Length of the slider (?) | | touchDimensions | {height: 50,width: 50,borderRadius: 15,slipDisplacement: 200} | object | (?) | | enableLabel | | function | Enable the label rendering | | customLabel | | function | Component used for rendering a label above the cursors. | | customMarker | | function | Component used for the cursor. | | customMarkerLeft | | function | Component used for the left cursor. | | customMarkerRight | | function | Component used for the right cursor. | | isMarkersSeparated | | boolean | See explaination above in the README.md | | min | 0 | number | Minimum value available in the slider. | | max | 10 | number | Maximum value available in the slider. | | step | 1 | number | Step value of the slider. | | optionsArray | | array of numbers | Possible values of the slider. Ignores min and max. | | {container/track/selected/unselected/ markerContainer/marker/pressedMarker} Style | | style object | Styles for the slider | | valuePrefix | | string | Prefix added to the value. | | valueSuffix | | string | Suffix added to the value. | | enabledOne | true | boolean | Enables the first cursor | | enabledTwo | true | boolean | Enables the second cursor | | onToggleOne | undefined | function callback | Listener when first cursor toggles. | | onToggleTwo | undefined | function callback | Listener when second cursor toggles. | | allowOverlap | false | boolean | Allow the overlap within the cursors. | | snapped | false | boolean | Use this when you want a fixed position for your markers, this will split the slider in N specific positions | | vertical | false | boolean | Use vertical orientation instead of horizontal. | | markerOffsetX | 0 | number | Offset the cursor(s) on the X axis | | markerOffsetY | 0 | number | Offset the cursor(s) on the Y axis | | minMarkerOverlapDistance | 0 | number | if this is > 0 and allowOverlap is false, this value will determine the closest two markers can come to each other. This can be used for cases where you have two markers large cursors and you don't want them to overlap. Note that markers will still overlap at the start if starting values are too near. | | imageBackgroundSource | undefined | string | Specifies the source as required by ImageBackground|