Skip to content

Commit 6a639ac

Browse files
Merge branch 'dev'
# Conflicts: # README.md
2 parents ea1bcae + b2d7496 commit 6a639ac

53 files changed

Lines changed: 13667 additions & 1 deletion

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
2+
3+
# dependencies
4+
node_modules/
5+
6+
# Expo
7+
.expo/
8+
dist/
9+
web-build/
10+
expo-env.d.ts
11+
12+
# Native
13+
*.orig.*
14+
*.jks
15+
*.p8
16+
*.p12
17+
*.key
18+
*.mobileprovision
19+
20+
# Metro
21+
.metro-health-check*
22+
23+
# debug
24+
npm-debug.*
25+
yarn-debug.*
26+
yarn-error.*
27+
28+
# macOS
29+
.DS_Store
30+
*.pem
31+
32+
# local env files
33+
.env*.local
34+
35+
# typescript
36+
*.tsbuildinfo

app/App.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import './gesture-handler';
2+
import React from 'react';
3+
import { StyleSheet } from 'react-native';
4+
5+
/* import Routes from './src/routes/index.routes'; */
6+
import { NavigationContainer } from '@react-navigation/native';
7+
8+
import { store } from './src/(redux)/store';
9+
import { Provider } from 'react-redux';
10+
import AppWrapper from './src/(redux)/appWrapper';
11+
12+
export default function App() {
13+
return (
14+
<Provider store={store}>
15+
<NavigationContainer>
16+
<AppWrapper />
17+
</NavigationContainer>
18+
</Provider>
19+
);
20+
}
21+
22+
const styles = StyleSheet.create({
23+
24+
});

app/app.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"expo": {
3+
"name": "app",
4+
"slug": "app",
5+
"version": "1.0.0",
6+
"orientation": "portrait",
7+
"icon": "./assets/icon.png",
8+
"userInterfaceStyle": "light",
9+
"newArchEnabled": true,
10+
"splash": {
11+
"image": "./assets/splash-icon.png",
12+
"resizeMode": "contain",
13+
"backgroundColor": "#ffffff"
14+
},
15+
"ios": {
16+
"supportsTablet": true
17+
},
18+
"android": {
19+
"adaptiveIcon": {
20+
"foregroundImage": "./assets/adaptive-icon.png",
21+
"backgroundColor": "#ffffff"
22+
}
23+
},
24+
"web": {
25+
"favicon": "./assets/favicon.png"
26+
}
27+
}
28+
}

app/assets/adaptive-icon.png

17.1 KB
Loading

app/assets/favicon.png

1.43 KB
Loading

app/assets/icon.png

21.9 KB
Loading

app/assets/splash-icon.png

17.1 KB
Loading

app/gesture-handler.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Don't import react-native-gesture-handler on web

app/gesture-handler.native.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Only import react-native-gesture-handler on native platforms
2+
import 'react-native-gesture-handler';

0 commit comments

Comments
 (0)