0.1.23 • Published 2 months ago

@gluestack-ui/slider v0.1.23

Weekly downloads
-
License
-
Repository
github
Last release
2 months ago

@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>
    <SliderTrack>
      <SliderFilledTrack />
    </SliderTrack>
    <SliderThumb />
  </Slider>
);

More guides on how to get started are available here.