Browse Source

Create global.js

the global style of the app
Orlando04 2 years ago
parent
commit
238abffc61
1 changed files with 19 additions and 0 deletions
  1. 19
    0
      MocionesIUPI/styles/global.js

+ 19
- 0
MocionesIUPI/styles/global.js View File

@@ -0,0 +1,19 @@
1
+import { StyleSheet } from "react-native";
2
+
3
+export const globalStyles = StyleSheet.create({
4
+  container: {
5
+    flex: 1,
6
+    padding: 20,
7
+  },
8
+
9
+  tittleText: {
10
+    fontSize: 18,
11
+    color: '#333',
12
+  },
13
+
14
+  paragraph: {
15
+    marginVertical: 8,
16
+    lineHeight: 20,
17
+  }
18
+});
19
+