ソースを参照

Create global.js

the global style of the app
Orlando04 2 年 前
コミット
238abffc61
共有1 個のファイルを変更した19 個の追加0 個の削除を含む
  1. 19
    0
      MocionesIUPI/styles/global.js

+ 19
- 0
MocionesIUPI/styles/global.js ファイルの表示

@@ -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
+