-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotes
43 lines (35 loc) · 773 Bytes
/
Notes
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
Here are notes to refer to for information and values that need to be repeatedly used
RBG Values
[
logo -
green: #2EC623
dark green: #1B9A22
light green: #DAFFE3
gradient -
green: #7FFF7F
blue: 7FF0FF
]
Async Storage
[
userDocRef - item that contains the reference to the firebase document for the logged in user
]
Firebase
[
]
Alert Exmple
[
Alert.alert(
'Alert Title',
'My Alert Msg',
[
{text: 'Ask me later', onPress: () => console.log('Ask me later pressed')},
{
text: 'Cancel',
onPress: () => console.log('Cancel Pressed'),
style: 'cancel',
},
{text: 'OK', onPress: () => console.log('OK Pressed')},
],
{cancelable: false},
);
]