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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@remirage/react-native-wheel-input

v1.0.0

Published

react-native-radial-input-slider is a React Native component that allows users to select a value using a circular radial slider while also providing a direct input field in the center for manual number entry.

Readme

Radial Slider

react-native-radial-input-slider

npm version downloads install size


About

react-native-radial-input-slider is a React Native component that provides a radial slider with an integrated input field for direct value entry. It allows users to select a specific value using a circular slider while also offering a text input for precise adjustments.

Features:

Radial Slider: Smooth, circular value selection. ✅ Direct Input: Users can enter values manually. ✅ Customizable: Modify colors, sizes, and behaviors. ✅ Dynamic Updates: Syncs values instantly. ✅ Ideal for Transactions: Perfect for selecting amounts, budgets, or other numerical inputs.


🎬 Preview

| Radial Input Slider | |---------------------| | Radial Input Slider |


Installation

npm install react-native-radial-input-slider react-native-svg
# or
yarn add react-native-radial-input-slider react-native-svg

For iOS, run:

cd ios && pod install

Usage

import React, { useState } from 'react';
import { StyleSheet, View } from 'react-native';
import { RadialInputSlider } from 'react-native-radial-input-slider';

const Example = () => {
  const [value, setValue] = useState(50);

  return (
    <View style={styles.container}>
      <RadialInputSlider value={value} min={0} max={100} onChange={setValue} />
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
  },
});

export default Example;

Properties

| Prop | Default | Type | Description | RadialSlider | SpeedoMeter | | :-------------------- | :------------------------------------------------------------------------- | :------------- | :--------------------------------------------------------------------------------------- | ------------ | ----------- | | min* | 0 | number | Minimum value | ✅ | ✅ | | max* | 100 | number | Maximum value | ✅ | ✅ | | value* | 0 | number | Show selection upto this value | ✅ | ✅ | | onChange* | - | function | Callback function that invokes on change in track | ✅ | ✅ | | radius | 100 | number | Size of component | ✅ | ✅ | | startAngle | 270 | number [1-360] | The angle at which the circular slider should start from. | ✅ | ❌ | | step | 1 | number | Step value for component | ✅ | ❌ | | markerValue | - | number | Show marker on specific number | ✅ | ✅ | | title | - | string | Title for component | ✅ | ❌ | | subTitle | Goal | string | Subtitle for component | ✅ | ❌ | | unit | RadialSlider: 'kCal', SpeedoMeter: 'MB/S' | string | Unit for component | ✅ | ✅ | | thumbRadius | 18 | number | Radius for thumb | ✅ | ❌ | | thumbColor | #008ABC | string | Color for thumb | ✅ | ❌ | | thumbBorderWidth | 5 | number | Width for thumb | ✅ | ❌ | | thumbBorderColor | #FFFFFF | string | Border Color for thumb | ✅ | ❌ | | markerLineSize | 50 | number | Size of marker line | ✅ | ✅ | | sliderWidth | 18 | number | Width of slider | ✅ | ✅ | | sliderTrackColor | #E5E5E5 | string | Color of unselected slider track | ✅ | ✅ | | lineColor | #E5E5E5 | string | Color of unselected lines | ✅ | ✅ | | lineSpace | 3 | number | Space between each line | ✅ | ✅ | | linearGradient | [ { offset: '0%', color:'#ffaca6' }, { offset: '100%', color: '#EA4800' }] | object | Gradient color of selected track | ✅ | ✅ | | onComplete | - | function | Callback function which defines what to do after completion | ✅ | ✅ | | centerContentStyle | {} | object | Center content style | ✅ | ❌ | | titleStyle | {} | object | Status title container style | ✅ | ❌ | | subTitleStyle | {} | object | Status subtitle text style | ✅ | ❌ | | valueStyle | {} | object | Center value style | ✅ | ✅ | | buttonContainerStyle | {} | object | Button container style | ✅ | ❌ | | leftIconStyle | {} | object | Left Icon style | ✅ | ❌ | | rightIconStyle | {} | object | Right Icon style | ✅ | ❌ | | contentStyle | {} | object | Whole content style | ✅ | ✅ | | unitStyle | {} | object | Unit text style | ✅ | ✅ | | style | {} | object | Inner container style | ✅ | ✅ | | openingRadian | RadialSlider: Math.PI / 3 , SpeedoMeter:0.057 | number | Radian of component | ✅ | ✅ | | disabled | false | boolean | If true, buttons will be in disabled state | ✅ | ❌ | | isHideSlider | false | boolean | If true, slider will be hidden | ✅ | ✅ | | isHideCenterContent | false | boolean | If true, center content will be hidden | ✅ | ✅ | | isHideTitle | false | boolean | If true, title will be hidden | ✅ | ❌ | | isHideSubtitle | false | boolean | If true, subtitle will be hidden | ✅ | ❌ | | isHideValue | false | boolean | If true, value will be hidden | ✅ | ✅ | | isHideTailText | false | boolean | If true, tail text will be hidden | ✅ | ✅ | | isHideButtons | false | boolean | If true, buttons will be hidden | ✅ | ❌ | | isHideLines | false | boolean | If true,slider lines will be hidden | ✅ | ✅ | | isHideMarkerLine | false | boolean | If true, marked lines will be hidden | ✅ | ✅ | | fixedMarker | false | boolean | If true, marked value will be hidden | ✅ | ✅ | | variant | default | string | Different component variants radial-circle-slider, speedometer, speedometer-marker | ✅ | ✅ | | onPress | {} | function | Based on click value will be increased or decreased | ✅ | ❌ | | stroke | '#008ABC' | string | Color for button icon | ✅ | ❌ | | unitValueContentStyle | {} | object | Unit value content style | ❌ | ✅ | | markerCircleSize | 15 | number | Size for marker circle | ❌ | ✅ | | markerCircleColor | #E5E5E5 | string | Color for marker circle | ❌ | ✅ | | markerPositionY | 20 | number | Marker position for up and down | ❌ | ✅ | | markerPositionX | 20 | number | Marker position for right and left | ❌ | ✅ | | needleBackgroundColor | #A020F0 | string | Background color for needle | ❌ | ✅ | | needleColor | #175BAD | string | Color for needle | ❌ | ✅ | | needleBorderWidth | 1.5 | number | Width of needle border | ❌ | ✅ | | needleHeight | 30 | number | Height of needle | ❌ | ✅ | | markerValueInterval | 10 | number | Show number of value in sequence | ❌ | ✅ | | markerValueColor | #333333 | string | Color for marker value | ❌ | ✅ | | strokeLinecap | butt | string | Line terminations, can be butt, line, or square | ❌ | ✅ |


Example

A full working example project is here Example

yarn
yarn example ios   // For ios
yarn example android   // For Android

License

This project is licensed under the MIT License.

Credits

This package was inspired by react-native-radial-slider by Simform. The original package provided the base implementation for radial sliders, which was adapted and enhanced for this library.