Kaynağa Gözat

Files base para TPMG

PabloPuig1 1 yıl önce
ebeveyn
işleme
3c539a6089
11 değiştirilmiş dosya ile 21528 ekleme ve 0 silme
  1. 4
    0
      .expo-shared/assets.json
  2. 14
    0
      .gitignore
  3. 25
    0
      App.js
  4. 33
    0
      app.json
  5. BIN
      assets/adaptive-icon.png
  6. BIN
      assets/favicon.png
  7. BIN
      assets/icon.png
  8. BIN
      assets/splash.png
  9. 6
    0
      babel.config.js
  10. 21423
    0
      package-lock.json
  11. 23
    0
      package.json

+ 4
- 0
.expo-shared/assets.json Dosyayı Görüntüle

@@ -0,0 +1,4 @@
1
+{
2
+  "12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true,
3
+  "40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true
4
+}

+ 14
- 0
.gitignore Dosyayı Görüntüle

@@ -0,0 +1,14 @@
1
+node_modules/
2
+.expo/
3
+dist/
4
+npm-debug.*
5
+*.jks
6
+*.p8
7
+*.p12
8
+*.key
9
+*.mobileprovision
10
+*.orig.*
11
+web-build/
12
+
13
+# macOS
14
+.DS_Store

+ 25
- 0
App.js Dosyayı Görüntüle

@@ -0,0 +1,25 @@
1
+import { StatusBar } from 'expo-status-bar';
2
+import { StyleSheet, Text, View } from 'react-native';
3
+
4
+// View -> UIView
5
+export default function App() {
6
+  return (
7
+    <View style={styles.container}>
8
+      <Text/>
9
+      <Text/>
10
+      <Text>Test Text</Text>
11
+      <Text/>
12
+      
13
+    </View>
14
+  );
15
+}
16
+
17
+
18
+const styles = StyleSheet.create({
19
+  container: {
20
+    flex: 1,
21
+    backgroundColor: '#fff',
22
+    alignItems: 'center',
23
+    justifyContent: 'center',
24
+  },
25
+});

+ 33
- 0
app.json Dosyayı Görüntüle

@@ -0,0 +1,33 @@
1
+{
2
+  "expo": {
3
+    "name": "DoneWithIt",
4
+    "slug": "DoneWithIt",
5
+    "version": "1.0.0",
6
+    "orientation": "portrait",
7
+    "icon": "./assets/icon.png",
8
+    "userInterfaceStyle": "light",
9
+    "splash": {
10
+      "image": "./assets/splash.png",
11
+      "resizeMode": "contain",
12
+      "backgroundColor": "#ffffff"
13
+    },
14
+    "updates": {
15
+      "fallbackToCacheTimeout": 0
16
+    },
17
+    "assetBundlePatterns": [
18
+      "**/*"
19
+    ],
20
+    "ios": {
21
+      "supportsTablet": true
22
+    },
23
+    "android": {
24
+      "adaptiveIcon": {
25
+        "foregroundImage": "./assets/adaptive-icon.png",
26
+        "backgroundColor": "#FFFFFF"
27
+      }
28
+    },
29
+    "web": {
30
+      "favicon": "./assets/favicon.png"
31
+    }
32
+  }
33
+}

BIN
assets/adaptive-icon.png Dosyayı Görüntüle


BIN
assets/favicon.png Dosyayı Görüntüle


BIN
assets/icon.png Dosyayı Görüntüle


BIN
assets/splash.png Dosyayı Görüntüle


+ 6
- 0
babel.config.js Dosyayı Görüntüle

@@ -0,0 +1,6 @@
1
+module.exports = function(api) {
2
+  api.cache(true);
3
+  return {
4
+    presets: ['babel-preset-expo'],
5
+  };
6
+};

+ 21423
- 0
package-lock.json
Dosya farkı çok büyük olduğundan ihmal edildi
Dosyayı Görüntüle


+ 23
- 0
package.json Dosyayı Görüntüle

@@ -0,0 +1,23 @@
1
+{
2
+  "name": "donewithit",
3
+  "version": "1.0.0",
4
+  "main": "node_modules/expo/AppEntry.js",
5
+  "scripts": {
6
+    "start": "expo start",
7
+    "android": "expo start --android",
8
+    "ios": "expo start --ios",
9
+    "web": "expo start --web"
10
+  },
11
+  "dependencies": {
12
+    "expo": "~46.0.16",
13
+    "expo-calendar": "~10.3.0",
14
+    "expo-status-bar": "~1.4.0",
15
+    "react": "18.0.0",
16
+    "react-native": "0.69.6",
17
+    "react-native-calendars": "^1.1275.0"
18
+  },
19
+  "devDependencies": {
20
+    "@babel/core": "^7.12.9"
21
+  },
22
+  "private": true
23
+}