
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
stepper-react-native
Advanced tools
A simple and fully customizable React Native component that implements a onboarding stepper.
yarn add stepper-react-native
npm i stepper-react-native
import {Onboarding} from 'stepper-react-native'
//components
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, View } from 'react-native';
import Step1 from './src/components/step1';
import {Onboarding, ScreensType} from 'stepper-react-native'
export default function App() {
const steps: ScreensType[] = [{
scrollable: true,
screen: <Step1 description='This is the first' />
},
{
scrollable: false,
screen: <Step1 description='This is the second' />
},
{
scrollable: false,
screen: <Step1 description='This is the third' />
}];
const handleOnNext = () => {
console.log("ON next");
};
const handleOnBack = () => {
console.log("ON BAck");
};
const handleFinish = () => {
console.log("Oh Finish...");
};
return (
<View style={styles.container}>
<View style={styles.container}>
<Onboarding
screens={steps}
onNext={() => handleOnNext()}
onPrevious={() => handleOnBack()}
onFinish={() => handleFinish()}
/>
</View>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
import {ViewStyle} from "react-native";
import React from "react";
type ScreensType = {
scrollable?: boolean;
screen: React.ReactElement
}
type ActionsBoardingType = {
onFinish?: () => void;
onNext?: () => void;
onPrevious?: () => void;
footerStyle?: ViewStyle;
}
type ConfigTypes = {
colorIcons?: string;
containerStyle?: ViewStyle;
sizeIcons?: number
}
type MainPropsType = ActionsBoardingType & {
screens: ScreensType[];
config?: ConfigTypes
}
FAQs
Onboarding component
The npm package stepper-react-native receives a total of 8 weekly downloads. As such, stepper-react-native popularity was classified as not popular.
We found that stepper-react-native demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.