Browse Source

config files

mortimel.ojeda 2 years ago
parent
commit
5696b6b4d2
3 changed files with 75 additions and 0 deletions
  1. 5
    0
      colors.js
  2. 9
    0
      firebaseConfig.js
  3. 61
    0
      styles.js

+ 5
- 0
colors.js View File

@@ -0,0 +1,5 @@
1
+export default {
2
+        softpink: '#FFF0F5',
3
+        skyblue: '#87CEFA',
4
+        white: '#FFFFFF'
5
+}

+ 9
- 0
firebaseConfig.js View File

@@ -0,0 +1,9 @@
1
+export const firebaseConfig = {
2
+    apiKey: "AIzaSyCoCATx5foZaUR7MIjBeruaw2eMhJAUOMs",
3
+    authDomain: "freehand-56972.firebaseapp.com",
4
+    projectId: "freehand-56972",
5
+    storageBucket: "freehand-56972.appspot.com",
6
+    messagingSenderId: "1023118993988",
7
+    appId: "1:1023118993988:web:1200827b7dabc557ca6a11",
8
+    measurementId: "G-ZZM3MV833Z"
9
+  };

+ 61
- 0
styles.js View File

@@ -0,0 +1,61 @@
1
+import { StyleSheet } from "react-native"
2
+
3
+import colors from "./colors"
4
+
5
+export const styles = StyleSheet.create({
6
+    stdcontainer: {
7
+        flex: 1,
8
+        justifyContent: 'flex-start',
9
+        alignItems: 'center'
10
+    },
11
+
12
+    regcontainer: {
13
+        flex: 1,
14
+        justifyContent: 'center',
15
+        alignItems: 'center',
16
+    },
17
+
18
+    regbutton:{
19
+        backgroundColor: colors.skyblue,
20
+        justifyContent: 'center',
21
+        alignItems: 'center',
22
+        width: '50%',
23
+        height: '5%',
24
+    },
25
+
26
+    regtxtfield: {
27
+        backgroundColor: colors.softpink,
28
+        width: '75%',
29
+        height: '5%',
30
+        borderRadius: 25,
31
+        paddingLeft: 20,
32
+        paddingRight: 20,
33
+        margin: 20,
34
+    },
35
+
36
+    regbuttontext: {
37
+        color: colors.white,
38
+        fontSize: 17
39
+    },
40
+
41
+    logo: {
42
+        width: "25%",
43
+        height: "25%",
44
+        top: 50,
45
+        marginBottom: 200
46
+    },
47
+
48
+    loginbutton: {
49
+        position: 'absolute',
50
+        bottom: 50,
51
+    },
52
+
53
+    picker: {
54
+        width: '50%',
55
+    },
56
+
57
+    qsttxt: {
58
+        marginTop: 20,
59
+        fontWeight: "bold"
60
+    }
61
+})