File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ export default function App() {
77
77
return (
78
78
< View style= {styles .container }>
79
79
< MultiSteps
80
+ containerButtonStyle= {styles .containerButtonStyle }
80
81
onMoveNext= {function (data : any ): void { console .log (" next" , data) }}
81
82
onMovePrevious= {function (data : any ): void { console .log (" previous" , data) }}
82
83
onSubmit= {function () { console .log (' Submit' ) }}>
@@ -137,7 +138,13 @@ const styles = StyleSheet.create({
137
138
justifyContent: ' center' ,
138
139
margin: 20 ,
139
140
},
140
-
141
+ containerButtonStyle: {
142
+ display: ' flex' ,
143
+ flexDirection: ' row' ,
144
+ justifyContent: ' flex-end' ,
145
+ paddingLeft: 10 ,
146
+ paddingRight: 30 ,
147
+ }
141
148
});
142
149
143
150
```
Original file line number Diff line number Diff line change @@ -170,8 +170,11 @@ const styles = StyleSheet.create({
170
170
marginVertical : 8 ,
171
171
} ,
172
172
fixToText : {
173
+ display : 'flex' ,
173
174
flexDirection : 'row' ,
174
- justifyContent : 'space-between' ,
175
+ justifyContent : 'flex-end' ,
176
+ paddingLeft : 10 ,
177
+ paddingRight : 30 ,
175
178
} ,
176
179
styleBtn : {
177
180
alignItems : 'center' ,
You can’t perform that action at this time.
0 commit comments