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
|
export const SocialBarTypes = (theme) => ({
_base: {
container: {
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'row',
flex: 1,
},
section: {
justifyContent: 'center',
flexDirection: 'row',
flex: 1,
},
icon: {
fontSize: 20,
},
label: {
marginLeft: 8,
alignSelf: 'flex-end',
},
},
leftAligned: {
section: {
alignItems: 'flex-start',
justifyContent: 'flex-start',
},
label: {
color: theme.colors.text.inverse,
},
icon: {
color: theme.colors.text.inverse,
},
},
space: {
container: {
justifyContent: 'space-between',
paddingHorizontal: 10,
},
section: {
flex: -1,
},
},
});
|