-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.dart
208 lines (194 loc) · 5.85 KB
/
main.dart
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import 'package:flutter/material.dart';
import 'package:video_player/video_player.dart';
import 'doctor_login_page.dart';
import 'patient_home_page.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Hospital Appointment System',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
late VideoPlayerController _controller;
@override
void initState() {
super.initState();
_controller = VideoPlayerController.asset('assets/animation_start.mp4')
..initialize().then((_) {
setState(() {});
_controller
.play(); // Automatically play the video when it's initialized
// Listen for the end of the video
_controller.addListener(() {
if (_controller.value.position == _controller.value.duration) {
// Video has ended, navigate to the screen with doctor and patient options
Navigator.of(context).pushReplacement(
MaterialPageRoute(
builder: (_) => UserSelectionScreen(),
),
);
}
});
});
}
@override
void dispose() {
super.dispose();
_controller.dispose();
}
@override
Widget build(BuildContext context) {
return _controller.value.isInitialized
? AspectRatio(
aspectRatio: _controller.value.aspectRatio,
child: VideoPlayer(_controller),
)
: CircularProgressIndicator();
}
}
// Define your custom page widgets here
class HomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Text('Home Page'),
);
}
}
class ProfilePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Text('Profile Page'),
);
}
}
class AppointmentsPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Text('Appointments Page'),
);
}
}
class UserSelectionScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Select User Role'),
),
body: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage('assets/background.png'),
fit: BoxFit.cover,
),
),
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
GestureDetector(
onTap: () {
Navigator.of(context).push(
MaterialPageRoute(
builder: (_) => DoctorLoginPage(),
),
);
},
child: Container(
width: MediaQuery.of(context).size.width * 0.8,
padding: EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.blue.withOpacity(0.8),
borderRadius: BorderRadius.circular(10),
),
child: Column(
children: [
Image.asset(
'assets/doc_icon.png', // Replace with your custom icon asset path
width: 80,
height: 80,
),
SizedBox(height: 10),
Text(
'Doctor/Staff',
style: TextStyle(
color: Colors.white,
fontSize: 18,
),
),
],
),
),
),
SizedBox(height: 20),
GestureDetector(
onTap: () {
// Directly navigate to the patient's interface
Navigator.of(context).push(
MaterialPageRoute(
builder: (_) => PatientHomePage(),
),
);
},
child: Container(
width: MediaQuery.of(context).size.width * 0.8,
padding: EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.green.withOpacity(0.8),
borderRadius: BorderRadius.circular(10),
),
child: Column(
children: [
Image.asset(
'assets/pat_icon.png', // Replace with your custom icon asset path
width: 80,
height: 80,
),
SizedBox(height: 10),
Text(
'Patient',
style: TextStyle(
color: Colors.white,
fontSize: 18,
),
),
],
),
),
),
],
),
),
),
);
}
}
class DoctorHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Welcome Doctor'),
),
body: Center(
child: Text('Doctor Interface Content'),
),
);
}
}