JSPM

  • Created
  • Published
  • Downloads 42685
  • Score
    100M100P100Q159927F

A universal headless slider component for React Native, Next.js & React

Package Exports

  • @gluestack-ui/slider
  • @gluestack-ui/slider/lib/commonjs/index.js
  • @gluestack-ui/slider/lib/module/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@gluestack-ui/slider) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@gluestack-ui/slider

Installation

To use @gluestack-ui/slider, all you need to do is install the @gluestack-ui/slider package:

$ yarn add @gluestack-ui/slider

# or

$ npm i @gluestack-ui/slider

Usage

The Slider component enables an intuitive selection of values within a designated range. Users can easily adjust their selection by sliding a visual indicator along the track. Here's an example how to use this package to create one:

import {
  Root,
  Thumb,
  Track,
  FilledTrack,
  ThumbInteraction,
} from '../components/core/slider/styled-components';
import { createSlider } from '@gluestack-ui/slider';
const Slider = createSlider({
  Root,
  Thumb,
  Track,
  FilledTrack,
  ThumbInteraction,
});

Customizing the slider:

Default styling of all these components can be found in the components/core/slider file. For reference, you can view the source code of the styled slider components.

// import the styles
import {
  Root,
  Thumb,
  Track,
  FilledTrack,
  ThumbInteraction,
} from '../components/core/slider/styled-components';

// import the createSlider function
import { createSlider } from '@gluestack-ui/slider';

// Understanding the API
const Slider = createSlider({
  Root,
  Thumb,
  Track,
  FilledTrack,
  ThumbInteraction,
});

// Using the Slider component
export default () => (
  <Slider>
    <Slider.Track>
      <Slider.FilledTrack />
    </Slider.Track>
    <Slider.Thumb />
  </Slider>
);

More guides on how to get started are available here.