-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathApp.tsx
175 lines (164 loc) Β· 5.34 KB
/
App.tsx
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
import React, { useCallback, useState } from 'react';
import {
Appearance,
ImageSourcePropType,
StatusBar,
StyleSheet,
Text,
TouchableHighlight,
View,
} from 'react-native';
import { Badge, Avatar, AvatarProps } from '@kolking/react-native-avatar';
StatusBar.setBarStyle('light-content');
function colorScheme(lightColor: string, darkColor: string) {
return Appearance.getColorScheme() === 'dark' ? darkColor : lightColor;
}
const IMAGES = [
{ uri: 'https://example.com/image.png' },
{ uri: 'https://xsgames.co/randomusers/assets/avatars/female/44.jpg' },
{ uri: 'https://xsgames.co/randomusers/assets/avatars/male/42.jpg' },
{ uri: 'https://xsgames.co/randomusers/assets/avatars/female/38.jpg' },
{ uri: 'https://xsgames.co/randomusers/assets/avatars/male/73.jpg' },
{ uri: 'https://xsgames.co/randomusers/assets/avatars/female/2.jpg' },
{ uri: 'https://xsgames.co/randomusers/assets/avatars/male/46.jpg' },
];
const App = () => {
const [badge, setBadge] = useState<number>(0);
const [image, setImage] = useState<number>(1);
const [badImage, setBadImage] = useState<ImageSourcePropType>();
const toggleBadge = useCallback(() => {
console.log('-- STATE UPDATED --');
setBadge(badge === 5 ? 0 : badge + 1);
}, [badge]);
const toggleImage = useCallback(() => {
console.log('-- STATE UPDATED --');
setImage(image + 1 === IMAGES.length ? 0 : image + 1);
}, [image]);
const toggleBadImage = useCallback(() => {
console.log('-- STATE UPDATED --');
setBadImage(badImage ? undefined : IMAGES[0]);
}, [badImage]);
return (
<View style={styles.container}>
<View style={styles.row}>
<Text style={styles.label}>Shape</Text>
<Avatar radius={0} />
<Avatar radius={15} />
<Avatar />
</View>
<View style={styles.row}>
<Text style={styles.label} onPress={toggleBadImage}>
No image
</Text>
<Avatar source={badImage} />
<Avatar defaultSource={require('./assets/custom.png')} />
<Avatar name="π©" />
</View>
<View style={styles.row}>
<Text style={styles.label}>Initials</Text>
<Avatar name="Nick" color="gray" />
<Avatar name="Jason Smith" colorize={true} />
<Avatar name="Emma Miller" email="[email protected]" colorize={true} />
</View>
<View style={styles.row}>
<Text style={styles.label} onPress={toggleImage}>
Image
</Text>
<Avatar source={IMAGES[image]} />
<Avatar source={IMAGES[3]} />
<Avatar source={IMAGES[6]} />
</View>
<View style={styles.row}>
<Text style={styles.label}>Gravatar</Text>
<Avatar radius={10} email="[email protected]" />
<Avatar radius={10} email="[email protected]" />
<Avatar radius={10} email="[email protected]" />
</View>
<View style={styles.row}>
<Text style={styles.label} onPress={toggleBadge}>
Badge
</Text>
<Avatar email="[email protected]" badge={!!badge} badgeColor="#34c759" />
<Avatar radius={15} email="[email protected]" badge={badge} badgeColor="#007aff" />
<Avatar
radius={10}
email="[email protected]"
badge={badge ? badge + 100 : undefined}
/>
</View>
<View style={styles.row}>
<Text style={styles.label}>Status</Text>
<Avatar email="[email protected]" badge="π" badgeProps={statusBadgeProps} />
<Avatar email="[email protected]" badge="π" badgeProps={statusBadgeProps} />
<Avatar email="[email protected]" badge="π΅" badgeProps={statusBadgeProps} />
</View>
<View style={styles.row}>
<Text style={styles.label}>Size</Text>
<Avatar radius={8} size={30} email="[email protected]" />
<Avatar radius={12} size={50} email="[email protected]" />
<Avatar radius={18} size={75} email="[email protected]" />
</View>
<TouchableHighlight
style={styles.button}
activeOpacity={0.5}
underlayColor="#00849C"
onPress={toggleBadge}
>
<>
<Text style={styles.buttonText}>Press me</Text>
<Badge value={badge} position="top-right" parentRadius={styles.button.borderRadius} />
</>
</TouchableHighlight>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 30,
justifyContent: 'center',
backgroundColor: colorScheme('#fff', '#212124'),
},
row: {
marginVertical: 10,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
},
label: {
fontSize: 15,
flexBasis: '35%',
fontWeight: '700',
color: colorScheme('#000', '#fff'),
},
badgeStyle: {
elevation: 0,
shadowOpacity: 0,
backgroundColor: colorScheme('#fff', '#212124'),
},
badgeTextStyle: {
marginHorizontal: 0,
},
button: {
width: 150,
height: 44,
marginTop: 20,
borderRadius: 22,
alignSelf: 'center',
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#2FAFC7',
},
buttonText: {
color: '#fff',
fontSize: 17,
fontWeight: '600',
},
});
const statusBadgeProps: AvatarProps['badgeProps'] = {
size: 22,
position: 'bottom-right',
style: styles.badgeStyle,
textStyle: styles.badgeTextStyle,
};
export default App;