Browse Source

Initial commit

Generated by create-expo-app 2.1.1.
master
Juni Kim 4 months ago
commit
837d451e4a
  1. 35
      .gitignore
  2. 20
      App.tsx
  3. 30
      app.json
  4. BIN
      assets/adaptive-icon.png
  5. BIN
      assets/favicon.png
  6. BIN
      assets/icon.png
  7. BIN
      assets/splash.png
  8. 6
      babel.config.js
  9. 14100
      package-lock.json
  10. 23
      package.json
  11. 6
      tsconfig.json

35
.gitignore

@ -0,0 +1,35 @@
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
# dependencies
node_modules/
# Expo
.expo/
dist/
web-build/
# Native
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
# Metro
.metro-health-check*
# debug
npm-debug.*
yarn-debug.*
yarn-error.*
# macOS
.DS_Store
*.pem
# local env files
.env*.local
# typescript
*.tsbuildinfo

20
App.tsx

@ -0,0 +1,20 @@
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text>Open up App.tsx to start working on your app!</Text>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});

30
app.json

@ -0,0 +1,30 @@
{
"expo": {
"name": "loginmockup2",
"slug": "loginmockup2",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}

BIN
assets/adaptive-icon.png

After

Width: 1024  |  Height: 1024  |  Size: 17 KiB

BIN
assets/favicon.png

After

Width: 48  |  Height: 48  |  Size: 1.4 KiB

BIN
assets/icon.png

After

Width: 1024  |  Height: 1024  |  Size: 22 KiB

BIN
assets/splash.png

After

Width: 1284  |  Height: 2778  |  Size: 46 KiB

6
babel.config.js

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

14100
package-lock.json
File diff suppressed because it is too large
View File

23
package.json

@ -0,0 +1,23 @@
{
"name": "loginmockup2",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"dependencies": {
"expo": "~50.0.14",
"expo-status-bar": "~1.11.1",
"react": "18.2.0",
"react-native": "0.73.6"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.45",
"typescript": "^5.1.3"
},
"private": true
}

6
tsconfig.json

@ -0,0 +1,6 @@
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true
}
}
Loading…
Cancel
Save