forked from expertping/react-native-micro-animated-button
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples.js
More file actions
192 lines (170 loc) · 4.41 KB
/
examples.js
File metadata and controls
192 lines (170 loc) · 4.41 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
import React, { PureComponent } from 'react';
import { Platform, ScrollView, StatusBar, Text, View } from 'react-native';
import Btn from 'react-native-micro-animated-button';
StatusBar.setHidden(true, 'fade');
const colors =
Platform.OS === 'ios'
? {
blue: '#007aff',
gray: '#d8d8d8',
green: '#4cd964',
red: '#ff3b30',
white: '#ffffff'
}
: {
blue: '#4285f4',
gray: '#d8d8d8',
green: '#0f9d58',
red: '#db4437',
white: '#ffffff'
};
const Example1 = () => (
<View style={styles.center}>
<Btn
foregroundColor={colors.green}
label="Submit"
onPress={() => this.b1.success()}
ref={ref => (this.b1 = ref)}
successIcon="check"
/>
<Btn
foregroundColor={colors.blue}
label="Retweet"
onPress={() => this.b2.success()}
ref={ref => (this.b2 = ref)}
successIcon="retweet"
/>
<Btn
foregroundColor={colors.red}
label="Favorite"
onPress={() => this.b3.success()}
ref={ref => (this.b3 = ref)}
successIcon="heart"
/>
</View>
);
const Example2 = () => (
<View style={styles.center}>
<Btn
errorBackgroundColor={colors.red}
errorIcon="thumbs-down"
expandOnFinish
foregroundColor={colors.blue}
label="Am I even?"
onPress={() =>
new Date().getSeconds() % 2 === 0 ? this.b4.success() : this.b4.error()
}
ref={ref => (this.b4 = ref)}
successBackgroundColor={colors.green}
successIcon="thumbs-up"
width={240}
/>
<Btn
errorBackgroundColor={colors.red}
errorIcon="thumbs-down"
expandOnFinish
foregroundColor={colors.blue}
label="Am I even?"
onPress={() =>
new Date().getSeconds() % 2 === 0 ? this.b5.success() : this.b5.error()
}
ref={ref => (this.b5 = ref)}
successBackgroundColor={colors.green}
successIcon="thumbs-up"
width={240}
/>
</View>
);
const Example3 = () => (
<View style={styles.center}>
<Btn
backgroundColor={colors.blue}
errorBackgroundColor={colors.red}
errorForegroundColor={colors.white}
errorIcon="warning"
foregroundColor={colors.white}
label="Simulate an error"
onPress={() => this.b6.error()}
ref={ref => (this.b6 = ref)}
shakeOnError
width={240}
/>
<Btn
backgroundColor={colors.blue}
foregroundColor={colors.white}
label="Smile at me"
onPress={() => this.b7.success()}
ref={ref => (this.b7 = ref)}
scaleOnSuccess
successBackgroundColor={colors.green}
successForegroundColor={colors.white}
successIcon="smile-o"
width={240}
/>
</View>
);
class Example4 extends PureComponent {
state = { disabled: true };
onPress = () => this.setState({ disabled: !this.state.disabled });
render() {
return (
<View style={styles.center}>
<Btn
backgroundColor={colors.blue}
foregroundColor={colors.white}
label="Static Button"
noRadius
onPress={this.onPress}
static
/>
<Btn
disabled={this.state.disabled}
label="Disabled Button"
noRadius
static
/>
</View>
);
}
}
class Example5 extends PureComponent {
state = { clicked: false };
onPress = () => this.setState({ clicked: true }, () => this.b8.success());
onSecondaryPress = () =>
this.setState({ clicked: false }, () => this.b8.reset());
render() {
return (
<View style={styles.row}>
<Btn
foregroundColor={colors.blue}
icon="cloud-download"
noFill
onPress={this.onPress}
onSecondaryPress={this.onSecondaryPress}
ref={ref => (this.b8 = ref)}
successBackgroundColor={colors.blue}
successIcon="remove"
/>
{this.state.clicked && (
<Text style={styles.rightText}>I just got downloaded</Text>
)}
</View>
);
}
}
const Examples = () => (
<ScrollView contentContainerStyle={styles.full}>
<Example1 />
<Example2 />
<Example3 />
<Example4 />
<Example5 />
</ScrollView>
);
const styles = {
center: { alignItems: 'center' },
full: { flex: 1 },
rightText: { color: colors.blue, marginLeft: 10 },
row: { alignItems: 'center', flexDirection: 'row', justifyContent: 'center' }
};
export default Examples;