forked from jsh854/react-native-progress-steps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExampleOne.js
85 lines (76 loc) · 2.27 KB
/
ExampleOne.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import React, { Component } from 'react';
import { View, Text } from 'react-native';
import { ProgressSteps, ProgressStep } from 'react-native-progress-steps';
class ExampleOne extends Component {
static navigationOptions = {
header: null
};
defaultScrollViewProps = {
keyboardShouldPersistTaps: 'handled',
contentContainerStyle: {
flex: 1,
justifyContent: 'center'
}
};
onNextStep = () => {
console.log('called next step');
};
onPaymentStepComplete = () => {
alert('Payment step completed!');
};
onPrevStep = () => {
console.log('called previous step');
};
onSubmitSteps = () => {
console.log('called on submit step.');
};
render() {
return (
<View style={{ flex: 1, marginTop: 50 }}>
<ProgressSteps>
<ProgressStep
label="Payment"
onNext={this.onPaymentStepComplete}
onPrevious={this.onPrevStep}
scrollViewProps={this.defaultScrollViewProps}
>
<View style={{ alignItems: 'center' }}>
<Text>Payment step content</Text>
</View>
</ProgressStep>
<ProgressStep
label="Shipping Address"
onNext={this.onNextStep}
onPrevious={this.onPrevStep}
scrollViewProps={this.defaultScrollViewProps}
>
<View style={{ alignItems: 'center' }}>
<Text>Shipping address step content</Text>
</View>
</ProgressStep>
<ProgressStep
label="Billing Address"
onNext={this.onNextStep}
onPrevious={this.onPrevStep}
scrollViewProps={this.defaultScrollViewProps}
>
<View style={{ alignItems: 'center' }}>
<Text>Billing address step content</Text>
</View>
</ProgressStep>
<ProgressStep
label="Confirm Order"
onPrevious={this.onPrevStep}
onSubmit={this.onSubmitSteps}
scrollViewProps={this.defaultScrollViewProps}
>
<View style={{ alignItems: 'center' }}>
<Text>Confirm order step content</Text>
</View>
</ProgressStep>
</ProgressSteps>
</View>
);
}
}
export default ExampleOne;