### Install Dependencies
Source: https://github.com/mahdidavoodi7/bottom-sheet-stepper/blob/main/example/README.md
Installs all necessary project dependencies using npm.
```bash
npm install
```
--------------------------------
### Start Development Server
Source: https://github.com/mahdidavoodi7/bottom-sheet-stepper/blob/main/example/README.md
Starts the Expo development server, allowing you to preview the app on various platforms.
```bash
npx expo start
```
--------------------------------
### Installation
Source: https://github.com/mahdidavoodi7/bottom-sheet-stepper/blob/main/README.md
Installs the bottom-sheet-stepper package and its peer dependencies for React Native projects.
```bash
npm install bottom-sheet-stepper
# or
yarn add bottom-sheet-stepper
npm install react-native-reanimated react-native-gesture-handler @gorhom/bottom-sheet
```
--------------------------------
### Basic Usage Example
Source: https://github.com/mahdidavoodi7/bottom-sheet-stepper/blob/main/README.md
Demonstrates how to use the BottomSheetStepper component, including defining steps and controlling its presentation programmatically.
```tsx
import React, { useRef } from "react";
import BottomSheetStepper, {
BottomSheetStepperRef,
StepComponentProps,
} from "bottom-sheet-stepper";
const Step1 = ({ onNextPress }: StepComponentProps) => (
Step 1
);
const Step2 = ({ onBackPress, onEnd }: StepComponentProps) => (
Step 2
);
const App = () => {
const stepperRef = useRef(null);
return (
<>