Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

github.com/testshallpass/react-native-simple-stepper

Package Overview
Dependencies
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/testshallpass/react-native-simple-stepper

Source
Go Modules
Version
v5.0.0+incompatible
Version published
Created
Source

react-native-simple-stepper

Platform npm version npm version License CI

A parity version of the iOS UIStepper.

screenshot

Table of contents

Installation

yarn add react-native-simple-stepper
npm install react-native-simple-stepper --save

Usage

import React from 'react';
import SimpleStepper from 'react-native-simple-stepper';

export default function Example(): React.JSX.Element {
  return <SimpleStepper valueChanged={value => console.log(value)} />;
}

Text Position

leftcenter (default)right
screenshotscreenshotscreenshot
import React from 'react';
import SimpleStepper from 'react-native-simple-stepper';

export default function TextPositionExample(): React.JSX.Element {
  return <SimpleStepper showText={true} textPosition={'right'} />;
}

Vertical layout

screenshot

import React from 'react';
import SimpleStepper from 'react-native-simple-stepper';

export default function VerticalExample(): React.JSX.Element {
  return <SimpleStepper horizontal={false} />;
}

FAQs

Package last updated on 05 Feb 2026

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