-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
143 lines (134 loc) · 5.97 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import { StatusBar } from "expo-status-bar";
import { StyleSheet, Text, View } from "react-native";
import Homepage from "./screens/Homepage";
import Study from "./screens/Study";
//import Menu from "./screens/Menu";
//import Thoughts from "./screens/Thoughts";
//import Wellbeing from "./screens/Wellbeing";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import React from "react";
import LegalClinicRegistration from "./screens/LegalClinicRegisteration";
import Wellbeing from "./screens/Wellbeing";
import Thoughts from "./screens/Thoughts";
import HomeProbono from "./screens/HomeProbono";
import HomeLawyer from "./screens/HomeLawyer";
import HomeNgo from "./screens/HomeNgo";
import Homelegalclinics from "./screens/Homelegalclinics";
import NotificationPage from "./screens/NotificationPage";
import MyComponent from "./screens/law";
import CourseDetails from "./components/CourseDetails";
import Dashboard from "./screens/Dashboard";
import HomeUTRC from "./screens/HomeUTRC";
import StartingPage from "./screens/StartingPage";
import Ngo from "./screens/Ngo";
import CommentScreen from "./screens/CommentScreen";
import CaseId from "./screens/CaseId";
import NGORegistration from "./screens/NGORegistration";
import LoginPage from "./screens/LoginPage";
import ProBonoRegistration from "./screens/ProBonoRegistration";
import UTPRegistration from "./screens/UTPRegistration";
import LawyerRegistration from "./screens/LawyerRegistration";
import CounsellorRegistration from "./screens/CounsellorRegistration";
import Animation from "./screens/Animation";
import UTRCRegistration from "./screens/UTRCRegistration";
import Role from "./screens/Role";
import utpData from "./screens/utpData";
import counsellorData from "./screens/counsellorData";
import ngoData from "./screens/ngoData";
import probonoData from "./screens/probonoData";
import SignupPage from "./screens/SignupPage";
import ProfilePage from "./screens/ProfilePage";
import LawyerHomepage from "./screens/LawyerHomepage";
import Lawyersubscription from "./screens/Lawyersubscription";
// import LawyerDashboard from "./screens/LawyerDashboard";
import Lawyersearchpage from "./screens/Lawyersearchpage";
import ViewAllClients from "./screens/ViewAllClients";
import CounsellorHomepage from "./screens/CounsellorHomepage";
import CounsellorDashboard from "./screens/CounsellorDashboard";
import Counsellorsearchpage from "./screens/Counsellorsearchpage";
import SchedulePage from "./screens/SchedulePage";
import NgoHomepage from "./screens/NgoHomepage";
const Stack = createStackNavigator();
//mport CourseDetails from "./components/CourseDetails";
const App = () => {
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="ProfilePage" component={ProfilePage} />
<Stack.Screen
name="Lawyersubscription"
component={Lawyersubscription}
/>
<Stack.Screen
name="CounsellorHomepage"
component={CounsellorHomepage}
/>
<Stack.Screen
name="CounsellorDashboard"
component={CounsellorDashboard}
/>
<Stack.Screen name="SchedulePage" component={SchedulePage} />
<Stack.Screen
name="Counsellorsearchpage"
component={Counsellorsearchpage}
/>
<Stack.Screen name="NgoHomepage" component={NgoHomepage} />
<Stack.Screen name="Animation" component={Animation} />
<Stack.Screen name="StartingPage" component={StartingPage} />
<Stack.Screen
name="LawyerRegistration"
component={LawyerRegistration}
/>
<Stack.Screen name="LawyerHomepage" component={LawyerHomepage} />
<Stack.Screen
name="CounsellorRegistration"
component={CounsellorRegistration}
/>
<Stack.Screen name="LoginPage" component={LoginPage} />
<Stack.Screen name="SignupPage" component={SignupPage} />
<Stack.Screen name="NGORegistration" component={NGORegistration} />
<Stack.Screen name="UTPRegistration" component={UTPRegistration} />
<Stack.Screen name="UTRCRegistration" component={UTRCRegistration} />
<Stack.Screen
name="LegalClinicRegistration"
component={LegalClinicRegistration}
/>
<Stack.Screen name="Homepage" component={Homepage} />
<Stack.Screen name="Wellbeing" component={Wellbeing} />
<Stack.Screen name="Thoughts" component={Thoughts} />
<Stack.Screen name="HomeProbono" component={HomeProbono} />
<Stack.Screen name="HomeLawyer" component={HomeLawyer} />
<Stack.Screen name="HomeNgo" component={HomeNgo} />
<Stack.Screen name="Homelegalclinics" component={Homelegalclinics} />
<Stack.Screen name="NotificationPage" component={NotificationPage} />
<Stack.Screen name="MyComponent" component={MyComponent} />
<Stack.Screen name="Study" component={Study} />
<Stack.Screen name="CourseDetails" component={CourseDetails} />
<Stack.Screen name="CaseId" component={CaseId} />
<Stack.Screen name="Dashboard" component={Dashboard} />
<Stack.Screen name="HomeUTRC" component={HomeUTRC} />
<Stack.Screen name="Ngo" component={Ngo} />
<Stack.Screen name="CommentScreen" component={CommentScreen} />
{/* Rajeshwari codes */}
<Stack.Screen name="Role" component={Role} />
<Stack.Screen name="utpData" component={utpData} />
<Stack.Screen name="ngoData" component={ngoData} />
<Stack.Screen name="counsellorData" component={counsellorData} />
<Stack.Screen name="probonoData" component={probonoData} />
<Stack.Screen name="ViewAllClients" component={ViewAllClients} />
</Stack.Navigator>
</NavigationContainer>
// <MyComponent />
//<Ngo />
// <Study />
// <Menu />
// <Thoughts />
// <Wellbeing />
//<CourseDetails />
// <Homepage />
// <NotificationPage />
// <HomeProbono />
);
};
export default App;