Skip to content

Commit eda74bc

Browse files
committed
first commit
0 parents  commit eda74bc

File tree

84 files changed

+17536
-0
lines changed

Some content is hidden

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

84 files changed

+17536
-0
lines changed

.bundle/config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BUNDLE_PATH: "vendor/bundle"
2+
BUNDLE_FORCE_RUBY_PLATFORM: 1

.eslintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
root: true,
3+
extends: '@react-native',
4+
};

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
ios/.xcode.env.local
24+
25+
# Android/IntelliJ
26+
#
27+
build/
28+
.idea
29+
.gradle
30+
local.properties
31+
*.iml
32+
*.hprof
33+
.cxx/
34+
*.keystore
35+
!debug.keystore
36+
37+
# node.js
38+
#
39+
node_modules/
40+
npm-debug.log
41+
yarn-error.log
42+
43+
# fastlane
44+
#
45+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
46+
# screenshots whenever they are needed.
47+
# For more information about the recommended setup visit:
48+
# https://docs.fastlane.tools/best-practices/source-control/
49+
50+
**/fastlane/report.xml
51+
**/fastlane/Preview.html
52+
**/fastlane/screenshots
53+
**/fastlane/test_output
54+
55+
# Bundle artifact
56+
*.jsbundle
57+
58+
# Ruby / CocoaPods
59+
/ios/Pods/
60+
/vendor/bundle/
61+
62+
# Temporary files created by Metro to check the health of the file watcher
63+
.metro-health-check*
64+
65+
# testing
66+
/coverage

.prettierrc.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
arrowParens: 'avoid',
3+
bracketSameLine: true,
4+
bracketSpacing: false,
5+
singleQuote: true,
6+
trailingComma: 'all',
7+
};

.watchmanconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

App.tsx

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
import {createNativeStackNavigator} from "@react-navigation/native-stack";
3+
import {NavigationContainer} from "@react-navigation/native";
4+
import {HomePage} from "./Screens/HomePage";
5+
import ContextState from "./Context/ContextState";
6+
import {ChatPage} from "./Screens/ChatPage";
7+
import {MailPage} from "./Screens/MailPage";
8+
import {CodePage} from "./Screens/CodePage";
9+
import {ToastProvider} from "react-native-toast-notifications";
10+
11+
12+
function App(): JSX.Element {
13+
14+
const Stack = createNativeStackNavigator()
15+
16+
17+
return (<ToastProvider>
18+
<ContextState>
19+
<NavigationContainer>
20+
<Stack.Navigator>
21+
<Stack.Screen name={"HomePage"} component={HomePage} options={{
22+
headerShown:false
23+
}}/>
24+
<Stack.Screen name={"ChatPage"} component={ChatPage} options={{
25+
headerShown:false
26+
}}/>
27+
<Stack.Screen name={"MailPage"} component={MailPage} options={{
28+
headerShown:false
29+
}}/>
30+
<Stack.Screen name={"CodePage"} component={CodePage} options={{
31+
headerShown:false
32+
}}/>
33+
</Stack.Navigator>
34+
</NavigationContainer>
35+
</ContextState></ToastProvider>
36+
);
37+
}
38+
39+
export default App;
649 KB
Loading
1.49 MB
Loading

Assets/back.png

3.42 KB
Loading
1020 KB
Loading

0 commit comments

Comments
 (0)