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

@jesster2k10/react-native-range-slider

v0.3.1

Published

React native cross platform range slider

Downloads

436

Readme

React Native Range Slider

A high-quality, cross platform, native iOS range slider for react native. A slider, similar in style to UISlider, but which allows you to pick a minimum and maximum range; inspired by react-native-range-slider

Features

  • iOS Support
  • Android Support
  • Native Code
  • Customizable

IOS Example

IOS Demo

Android Example

IOS Demo

Installation

Install the library using either yarn or npm like so:

yarn add @jesster2k10/react-native-range-slider
npm install --save @jesster2k10/react-native-range-slider

IOS Installation

If you're using React Native versions > 60.0, it's relatively straightforward.

cd ios && pod install

For versions below 0.60.0, use rnpm links

  • Run react-native link @jesster2k10/react-native-range-slider
  • If linking fails, follow the manual linking steps

Android Installation

For versions below 0.60.0, follow the linking instructions above. There are additional steps required to get started with android.

Step One

Modify your settings.gradle to include the following

include ':rangeseekbar'
project(':rangeseekbar').projectDir = new File('../../node_modules/@jesster2k10/react-native-range-seekbar/crystalrangeseekbar')

Step Two

Modify and your application build.gradle to include:

buildscript {
  dependencies {
    classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
    classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
  }
}

### Step Three

Modify your AndroidManifest.xml and set android:allowBackup="true", see below for example:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  package="com.ReactNativeRangeSliderExample">

    <uses-permission android:name="android.permission.INTERNET" />

    <application
      android:name=".MainApplication"
      android:label="@string/app_name"
      android:icon="@mipmap/ic_launcher"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:allowBackup="true"
      android:theme="@style/AppTheme">
      <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
        android:windowSoftInputMode="adjustResize">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
      </activity>
      <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
    </application>

</manifest>

Usage

Basic Usage

You can check out the examples for more usage.

import RangeSlider from '@jesster2k10/react-native-range-slider';

// ...

<RangeSlider
  min={0}
  max={100}
  onChange={(min, max) => console.log(min, max)}
/>;

## Props

Props Explanation

Common Props

| property | type | description | required | | ----------------------- | ---------------------------------- | -------------------------------------------------------------------------------- | -------- | | min | number | the minimum value for the slider | TRUE | | max | number | the maximum value for the slider | TRUE | | onChange | (min: number, max: number) => void | a callback that will be called with slider data once the values change | FALSE | | tintColor | string | tint color for the slider track & handles (ios only, use handleColor on android) | FALSE | | tintColorBetweenHandles | string | tint color for the active part of the slider track | FALSE | | step | number | the step for the slider | FALSE | | handleColor | string | the color for both left and right handlers | FALSE | | style | object | a custom style object for the slider | FALSE | | prefix | string | the prefix for the min and max values | | | suffix | string | the suffix for the min and max values | | | FALSE |

IOS Only Props

| property | type | description | required | | ----------------- | ------- | --------------------------------------------------------- | ------------------ | | type | slider | range | the type of slider | FALSE | | selectedMaximum | number | the selected maximum value, it shouldn't be less than max | FALSE | | selectedMinimum | number | the selected minimum value, it shouldn't be less than min | FALSE | | handleBorderColor | string | the color for the slider handle border | FALSE | | handleWidth | number | the size of the handle | FALSE | | minLabelColor | string | the color of the minimum (left hand) label | FALSE | | maxLabelColor | string | the color of the maximum (right hand) label | FALSE | | handleDiameter | number | the diameter of the handle | FALSE | | lineHeight | number | the height of the slider track | FALSE | | hideLabels | boolean | controls whether the min and max labels are visible | FALSE | | minLabelFont | string | the font family name of the min (left hand) label | FALSE | | minLabelFontSize | number | the font size of the min (left hand) label | FALSE | | maxLabelFont | string | the font family name of the max (right hand) label | FALSE | | maxLabelFontSize | number | the font size of the max (right hand) label | FALSE | | labelPadding | number | extra padding for the min & max labels | FALSE | | maxDistance | number | the maximum distance between handles | FALSE | | minDistance | number | the minimum distance between handles | FALSE | | lineBorderWidth | number | the border width of the slider track | FALSE | | lineBorderColor | string | the border color of the slider track | FALSE |

Android Only Props

| property | type | description | required | | ----------------------- | ------ | ------------------------------------------------ | -------- | | leftHandleColor | string | the color of the left handle | FALSE | | leftHandlePressedColor | string | the color of the left (min) handle when touched | FALSE | | rightHandleColor | string | the color of the right (max) handle | FALSE | | rightHandlePressedColor | string | the color of the right (max) handle when touched | FALSE | | handlePressedColor | string | the color of the handle when touched | FALSE | | minStartValue | number | - | FALSE | | maxStartValue | number | - | FALSE | | fixGap | number | a fixed gap between the handles | FALSE | | corderRadius | number | the corder radius of the slider track | FALSE |

Please note that on android, the tint color refers to the color of the empty track.

Acknowledgments

Roadmap

  • Improve android customization abilities (fonts, handle size)
  • Improve documentation
  • Unit tests
  • Flow support

Contribution

Please visit the CONTRIBUTING.md file.

License

MIT