-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #252 from bounswe/3design_mobile
Mobile app finalized for first milestone
- Loading branch information
Showing
32 changed files
with
93,968 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|
||
# env files | ||
.env* | ||
|
||
# typescript | ||
*.tsbuildinfo |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { NavigationContainer } from '@react-navigation/native'; | ||
|
||
import StackNavigator from './app/navigation/StackNavigator'; | ||
import { CategoryProvider } from './app/context/CategoryContext'; | ||
import { PostScreenProvider } from './app/context/PostScreenContext'; | ||
import { AuthProvider } from './app/context/AuthContext'; | ||
|
||
export default function App() { | ||
return ( | ||
<AuthProvider> | ||
<PostScreenProvider> | ||
<CategoryProvider> | ||
<NavigationContainer> | ||
<StackNavigator /> | ||
</NavigationContainer> | ||
</CategoryProvider> | ||
</PostScreenProvider> | ||
</AuthProvider> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"expo": { | ||
"name": "3Design", | ||
"slug": "3Design", | ||
"version": "0.1.0", | ||
"orientation": "portrait", | ||
"icon": "./app/assets/icon.png", | ||
"userInterfaceStyle": "light", | ||
"splash": { | ||
"image": "./app/assets/splash.png", | ||
"resizeMode": "contain", | ||
"backgroundColor": "#ffffff" | ||
}, | ||
"ios": { | ||
"supportsTablet": true | ||
}, | ||
"android": { | ||
"adaptiveIcon": { | ||
"foregroundImage": "./app/assets/adaptive-icon.png", | ||
"backgroundColor": "#ffffff" | ||
}, | ||
"permissions": ["INTERNET"], | ||
"package": "com.onurcerli.ThreeDesign" | ||
}, | ||
"web": { | ||
"favicon": "./app/assets/favicon.png" | ||
}, | ||
"plugins": [ | ||
[ | ||
"expo-build-properties", | ||
{ | ||
"android": { | ||
"usesCleartextTraffic": true | ||
} | ||
} | ||
] | ||
], | ||
"extra": { | ||
"eas": { | ||
"projectId": "b7f9f8c1-944b-488c-b640-b9c0d50edefd" | ||
} | ||
}, | ||
"assetBundlePatterns": ["app/assets/*"] | ||
} | ||
} |
Oops, something went wrong.