Skip to content

Commit 1af1bc3

Browse files
committed
master commit
1 parent 4a2a436 commit 1af1bc3

File tree

97 files changed

+19435
-5443
lines changed

Some content is hidden

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

97 files changed

+19435
-5443
lines changed

App.js

+54-9
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@ import SettingsView from "./Screens/Settings";
1010
import EmergencyProtocols from "./Screens/EmergencyProtocols";
1111
import DayAgenda from "./Screens/DayAgenda";
1212
import EmergencyPage from "./Screens/EmergencyPage";
13-
import Microsoft from "./Screens/MicrosoftLogin";
14-
13+
import Notifications from "./Screens/Notifications";
14+
import SnazzyLogin from "./Screens/SnazzyLogin";
1515
import EventsCalendar from "./Screens/EventsCalendar";
16+
import LoginMicrosoft from "./Screens/LoginMicrosoft";
17+
import { Doctors } from "./Screens/Doctors"
18+
import VoiceRecorder from "./Screens/VoiceRecorder";
1619

17-
const Stack = createNativeStackNavigator();
1820

21+
const Stack = createNativeStackNavigator();
1922
function App() {
2023
// This is the main function that will be called when the app is loaded
2124
return (
@@ -25,16 +28,35 @@ function App() {
2528
<Stack.Screen
2629
options={{ headerShown: false }}
2730
name="Login"
28-
component={Login}
31+
component={SnazzyLogin}
2932
/>
3033
}
34+
35+
<Stack.Screen
36+
name="Schedule"
37+
component={Schedule}
38+
options={{ headerShown: false }}
39+
/>
3140
<Stack.Screen
3241
name="Dashboard"
3342
component={Dashboard}
3443
options={{ headerShown: false }}
3544
/>
36-
<Stack.Screen name="Schedule" component={Schedule} />
37-
<Stack.Screen name="CalendarView" component={CalendarView} />
45+
<Stack.Screen
46+
name="Doctors"
47+
component={Doctors}
48+
options={{ headerShown: false }}
49+
/>
50+
<Stack.Screen
51+
name="LoginMicrosoft"
52+
component={LoginMicrosoft}
53+
options={{ headerShown: false }}
54+
/>
55+
<Stack.Screen
56+
name="CalendarView"
57+
component={CalendarView}
58+
options={{ headerShown: false }}
59+
/>
3860
<Stack.Screen
3961
name="SettingsView"
4062
component={SettingsView}
@@ -43,10 +65,33 @@ function App() {
4365
<Stack.Screen
4466
name="EmergencyProtocols"
4567
component={EmergencyProtocols}
68+
options={{ headerShown: false }}
69+
/>
70+
<Stack.Screen
71+
name="DayAgenda"
72+
component={DayAgenda}
73+
options={{ headerShown: false }}
74+
/>
75+
<Stack.Screen
76+
name="EmergencyPage"
77+
component={EmergencyPage}
78+
options={{ headerShown: false }}
79+
/>
80+
<Stack.Screen
81+
name="EventsCalendar"
82+
component={EventsCalendar}
83+
options={{ headerShown: false }}
84+
/>
85+
<Stack.Screen
86+
name="Notifications"
87+
component={Notifications}
88+
options={{ headerShown: false }}
89+
/>
90+
<Stack.Screen
91+
name="snazzyLogin"
92+
component={SnazzyLogin}
93+
options={{ headerShown: false }}
4694
/>
47-
<Stack.Screen name="DayAgenda" component={DayAgenda} />
48-
<Stack.Screen name="EmergencyPage" component={EmergencyPage} />
49-
<Stack.Screen name="EventsCalendar" component={EventsCalendar} />
5095
</Stack.Navigator>
5196
</NavigationContainer>
5297
);

DFMPC John.side

-82
This file was deleted.

0 commit comments

Comments
 (0)