@@ -10,12 +10,15 @@ import SettingsView from "./Screens/Settings";
10
10
import EmergencyProtocols from "./Screens/EmergencyProtocols" ;
11
11
import DayAgenda from "./Screens/DayAgenda" ;
12
12
import EmergencyPage from "./Screens/EmergencyPage" ;
13
- import Microsoft from "./Screens/MicrosoftLogin " ;
14
-
13
+ import Notifications from "./Screens/Notifications " ;
14
+ import SnazzyLogin from "./Screens/SnazzyLogin" ;
15
15
import EventsCalendar from "./Screens/EventsCalendar" ;
16
+ import LoginMicrosoft from "./Screens/LoginMicrosoft" ;
17
+ import { Doctors } from "./Screens/Doctors"
18
+ import VoiceRecorder from "./Screens/VoiceRecorder" ;
16
19
17
- const Stack = createNativeStackNavigator ( ) ;
18
20
21
+ const Stack = createNativeStackNavigator ( ) ;
19
22
function App ( ) {
20
23
// This is the main function that will be called when the app is loaded
21
24
return (
@@ -25,16 +28,35 @@ function App() {
25
28
< Stack . Screen
26
29
options = { { headerShown : false } }
27
30
name = "Login"
28
- component = { Login }
31
+ component = { SnazzyLogin }
29
32
/>
30
33
}
34
+
35
+ < Stack . Screen
36
+ name = "Schedule"
37
+ component = { Schedule }
38
+ options = { { headerShown : false } }
39
+ />
31
40
< Stack . Screen
32
41
name = "Dashboard"
33
42
component = { Dashboard }
34
43
options = { { headerShown : false } }
35
44
/>
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
+ />
38
60
< Stack . Screen
39
61
name = "SettingsView"
40
62
component = { SettingsView }
@@ -43,10 +65,33 @@ function App() {
43
65
< Stack . Screen
44
66
name = "EmergencyProtocols"
45
67
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 } }
46
94
/>
47
- < Stack . Screen name = "DayAgenda" component = { DayAgenda } />
48
- < Stack . Screen name = "EmergencyPage" component = { EmergencyPage } />
49
- < Stack . Screen name = "EventsCalendar" component = { EventsCalendar } />
50
95
</ Stack . Navigator >
51
96
</ NavigationContainer >
52
97
) ;
0 commit comments