-
Notifications
You must be signed in to change notification settings - Fork 0
/
json.txt
68 lines (55 loc) · 2.09 KB
/
json.txt
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
// "name": "reactdiamondchallange",
// "displayName": "home",
/// "expo": {
// "name": "reactdiamondchallange",
// "slug": "expo-template-bare",
// "privacy": "unlisted",
// "sdkVersion": "35.0.0",
// "version": "1.0.0",
/// "entryPoint": "node_modules/expo/AppEntry.js",
/// "platforms": [
///// "ios",
// "android",
// "web"
/// ]
// }*/
<View>
<CalendarList
current={'2019-10-15'}
pastScrollRange={24}
futureScrollRange={24}
horizontal
pagingEnabled
style={{ borderBottomWidth: 1, borderBottomColor: 'black' }}
markedDates={{
'2019-10-23': { selected: true, marked: true },
'2019-10-24': { selected: true, marked: true, dotColor: 'green' },
'2019-11-25': { marked: true, dotColor: 'red' },
'2019-11-26': { marked: true },
'2019-10-27': { disabled: true, activeOpacity: 0 }
}}
disabledByDefault={true}
hideArrows={true}
/>
</View>
fire.database().ref('users/samgivian2015/coins').on('value', function (snapshot) {
alert(snapshot.val());
})
<Item floatingLabel>
<Label>Email</Label>
<Input
autoCorrect={false}
autoCapitalize="none"
onChangeText={(email) => this.setState({ email })}
/>
</Item>
<Hoshi
label={'Email'}
// this is used as active border color
borderColor={'blue'}
// active border height
borderHeight={3}
inputPadding={16}
onChangeText={(email) => this.setState({ email })}
// this is used to set backgroundColor of label mask.
// please pass the backgroundColor of your TextInput container.