File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ A simple and fully customizable React Native component that implements a progres
9
9
- Each steps content is displayed inside of a customizable ScrollView.
10
10
- Customizable buttons are displayed at the bottom of the component to move between steps.
11
11
12
- ## ✨ What's New in 2.0 .0
12
+ ## ✨ What's New in v2 .0
13
13
14
14
- 🎯 ** Full TypeScript Support** - Complete type definitions for an enhanced development experience
15
15
- 🔄 ** Modern Component Architecture** - Refactored to use functional components and React hooks
@@ -24,8 +24,8 @@ A simple and fully customizable React Native component that implements a progres
24
24
25
25
## Example
26
26
27
- <img src =" assets/example.png " width =" 300 " height =" 600 " style = " border-radius : 8 px " />
28
- < br />
27
+ <img src="assets/example.png" width="300" height="600"
28
+ style="border-radius: 15px; border: 2px solid #ccc; display: block;" />
29
29
<a href =" examples/example.jsx " >examples/example.js</a >
30
30
31
31
## Installation
@@ -96,8 +96,8 @@ To hide the button row, set the `removeBtnRow` prop to `true`. The current step
96
96
```
97
97
const [activeStep, setActiveStep] = useState(0);
98
98
99
- <ProgressSteps removeBtnRow activeStep={activeStep}>
100
- <ProgressStep label="First Step">
99
+ <ProgressSteps activeStep={activeStep}>
100
+ <ProgressStep label="First Step" removeBtnRow >
101
101
<View style={{ alignItems: 'center' }}>
102
102
<Text>This is the content within step 1!</Text>
103
103
</View>
You can’t perform that action at this time.
0 commit comments