You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@gluestack-ui/range-slider

Package Overview
Dependencies
Maintainers
15
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gluestack-ui/range-slider

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

0.1.1
latest
npmnpm
Version published
Weekly downloads
105
950%
Maintainers
15
Weekly downloads
 
Created
Source

@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.

Keywords

react

FAQs

Package last updated on 18 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts