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

@3beeepb/react-native-range-slider

v1.0.8

Published

Cross Platform (iOS / Android) implementation of Range Slider for React Native

Downloads

38

Readme

react-native-range-slider npm version NPM

A cross-platform (iOS / Android) implementation of Range Slider for React Native.

Installation

  • npm: npm install --save @3beeepb/react-native-range-slider --save

Usage

RangeSlider uses react hooks, so this component doesn't work with React Native versions below 0.59.0

  1. Import the library

    import RangeSlider from '@3beeepb/react-native-range-slider';
  2. Just use it like this:

  • Handler callback

    const handleValueChange = useCallback((low, high, isUpdate) => {
      if (isUpdate) {
        setLow(low);
        setHigh(high);
      }
    }, []);
    const handleChange = useCallback(() => {
      // release thumb
    }, []);
  • JSX

    <Slider
      style={styles.slider}
      min={0}
      max={100}
      onChange={handleChange}
      onValueChanged={handleValueChange}
    />

Properties

| Name | Description | Type | Default Value | | --- | --- | --- | :-------------: | | min | Minimum value of slider | number | required | | max | Maximum value of slider | number | required | | step | Step of slider | number | 1 | | low | Low value of slider | number | Initially min value will be set if not provided | | high | High value of slider | number | Initially max value will be set if not provided | | floatingLabel | If set to true, labels will not take space in component tree. Instead they will be rendered over the content above the slider (like a small popup). | boolean | false | | disableRange | Slider works as an ordinary slider with only one control if true | boolean | false | | disabled | Any user interactions will be ignored if true | boolean | false | | allowLabelOverflow | If set to true, labels are allowed to be drawn outside of slider component's bounds.Otherwise label's edges will never get out of component's edges. | boolean | false | | renderThumb | Should render the thumb. | () => Node | undefined | | renderRail | Should render the "rail" for thumbs.Rendered component should have flex: 1 style so it won't fill up the whole space. | () => Node | undefined | | renderRailSelected | Should render the selected part of "rail" for thumbs.Rendered component should not have flex: 1 style so it fills up the whole space. | () => Node | undefined | | renderLabel | Should render label above thumbs.If no function is passed, no label will be drawn. | (value: number) => Node | undefined | | renderNotch | Should render the notch below the label (above the thumbs).Classic notch is a small triangle below the label.If allowLabelOverflow is not set to true, the notch will continue moving with thumb even if the label has already reached the edge of the component and can't move further.| () => Node | undefined | | onValueChanged | Will be called when a value was changed.If disableRange is set to true, the second argument should be ignored.isUpdate will be true if the value was changed by user's interaction. | (low: number, high: number, isUpdate: boolean) => void | undefined | | onChanged | Will be called when a user release thumb. | () => void | undefined |

All the other props (e.g. style) will be passed to root container component.

Contribution

Please make sure to run the tests before proposing a PR by running npm test.