forked from colbymillerdev/react-native-progress-steps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExampleTwo.js
116 lines (106 loc) · 3.43 KB
/
ExampleTwo.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import React, { Component } from 'react';
import { View, Text } from 'react-native';
import { ProgressSteps, ProgressStep } from 'react-native-progress-steps';
class ExampleTwo extends Component {
static navigationOptions = {
header: null
};
defaultScrollViewProps = {
keyboardShouldPersistTaps: 'handled',
contentContainerStyle: {
flex: 1,
justifyContent: 'center'
}
};
onNextStep = () => {
console.log('called next step');
};
onPrevStep = () => {
console.log('called previous step');
};
onSubmitSteps = () => {
console.log('called on submit step.');
};
render() {
const progressStepsStyle = {
activeStepIconBorderColor: '#686868',
activeLabelColor: '#686868',
activeStepNumColor: 'white',
activeStepIconColor: '#686868',
completedStepIconColor: '#686868',
completedProgressBarColor: '#686868',
completedCheckColor: '#4bb543'
};
const buttonTextStyle = {
color: '#686868',
fontWeight: 'bold'
};
return (
<View style={{ flex: 1, marginTop: 50 }}>
<ProgressSteps {...progressStepsStyle}>
<ProgressStep
label="First"
onNext={this.onNextStep}
onPrevious={this.onPrevStep}
scrollViewProps={this.defaultScrollViewProps}
nextBtnTextStyle={buttonTextStyle}
previousBtnTextStyle={buttonTextStyle}
>
<View style={{ alignItems: 'center' }}>
<Text>This is the content within step 1!</Text>
</View>
</ProgressStep>
<ProgressStep
label="Second"
onNext={this.onNextStep}
onPrevious={this.onPrevStep}
scrollViewProps={this.defaultScrollViewProps}
nextBtnTextStyle={buttonTextStyle}
previousBtnTextStyle={buttonTextStyle}
>
<View style={{ alignItems: 'center' }}>
<Text>This is the content within step 2!</Text>
</View>
</ProgressStep>
<ProgressStep
label="Third"
onNext={this.onNextStep}
onPrevious={this.onPrevStep}
scrollViewProps={this.defaultScrollViewProps}
nextBtnTextStyle={buttonTextStyle}
previousBtnTextStyle={buttonTextStyle}
>
<View style={{ alignItems: 'center' }}>
<Text>This is the content within step 3!</Text>
</View>
</ProgressStep>
<ProgressStep
label="Fourth"
onNext={this.onNextStep}
onPrevious={this.onPrevStep}
scrollViewProps={this.defaultScrollViewProps}
nextBtnTextStyle={buttonTextStyle}
previousBtnTextStyle={buttonTextStyle}
>
<View style={{ alignItems: 'center' }}>
<Text>This is the content within step 4!</Text>
</View>
</ProgressStep>
<ProgressStep
label="Fifth"
onPrevious={this.onPrevStep}
onSubmit={this.onSubmitSteps}
scrollViewProps={this.defaultScrollViewProps}
nextBtnTextStyle={buttonTextStyle}
previousBtnTextStyle={buttonTextStyle}
>
<View style={{ alignItems: 'center' }}>
<Text>This is the content within step 5!</Text>
</View>
</ProgressStep>
</ProgressSteps>
</View>
);
}
}
export default ExampleTwo;