Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 47 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

# dependencies
node_modules/
.pnp/
.pnp.js

# Expo
.expo/
Expand Down Expand Up @@ -30,8 +30,53 @@ yarn-error.*
.DS_Store
*.pem


# Android
*.apk
*.aab
*.keystore
*.jks
android/.gradle/
android/app/build/
android/build/

# iOS
ios/Pods/
ios/build/
*.xcworkspace
*.xcuserdata


# IDE
.idea/
.vscode/
*.swp
*.swo

# OS files
.DS_Store
Thumbs.db

# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# ADB keys (NEVER commit these!)
*.adbkey
*.adbkey.pub
adbkey
adbkey.pub

# Temporary files
*.log
*.tmp

# local env files
.env*.local
.env
.env.local
.env.*.local

# typescript
*.tsbuildinfo
Expand Down
10 changes: 3 additions & 7 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"slug": "ExperientApp",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"icon": "./assets/images/favicon.png",
"scheme": "experientapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
Expand All @@ -20,11 +20,10 @@
},
"web": {
"bundler": "metro",
"output": "static",
"output": "single",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
Expand All @@ -34,9 +33,6 @@
"backgroundColor": "#ffffff"
}
]
],
"experiments": {
"typedRoutes": true
}
]
}
}
45 changes: 0 additions & 45 deletions app/(tabs)/_layout.tsx

This file was deleted.

39 changes: 0 additions & 39 deletions app/(tabs)/explore.tsx

This file was deleted.

44 changes: 0 additions & 44 deletions app/(tabs)/index.tsx

This file was deleted.

32 changes: 0 additions & 32 deletions app/+not-found.tsx

This file was deleted.

29 changes: 0 additions & 29 deletions app/_layout.tsx

This file was deleted.

Binary file added assets/images/experient.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/icon.png
Binary file not shown.
Binary file added assets/images/logout-icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions assets/images/logout.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/partial-react-logo.png
Binary file not shown.
Binary file removed assets/images/react-logo.png
Binary file not shown.
Binary file removed assets/images/react-logo@2x.png
Binary file not shown.
Binary file removed assets/images/react-logo@3x.png
Binary file not shown.
Binary file removed assets/images/splash-icon.png
Binary file not shown.
6 changes: 6 additions & 0 deletions index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import '@expo/metro-runtime'; // Necessary for Fast Refresh on Web
import { registerRootComponent } from 'expo';

import { App } from './src/App';

registerRootComponent(App);
Loading