-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmedmart.kv
331 lines (296 loc) · 8.13 KB
/
medmart.kv
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
#: import SwapTransition kivy.uix.screenmanager.SwapTransition
<MyButton@Button>:
id: btn
# --------------------- Screens ---------------------------
# "name:" is the screen name to be referred inside other screens, helps in screen change
WindowManager:
transition: SwapTransition()
canvas.before:
Rectangle:
size: root.width, root.height
source: "images/background.jpg"
WelcomeScreen:
LoginScreen:
RegisterScreen:
HomeScreen:
BuyMedicinesScreen:
CartScreen:
AboutScreen:
<WelcomeScreen>:
name: "welcomeScreen"
BoxLayout:
pos_hint: {"y": 0.35}
Label:
text: "Welcome To Medmart App"
font_size: 30
bold: True
italic: True
BoxLayout:
size_hint: 0.2, 0.1
size: 200, 100
pos_hint: {"x": 0.01, "y": 0.01}
orientation: 'vertical'
Button:
text: "Register"
on_release:
app.root.current = "registerScreen"
Button:
text: "Login"
on_release:
app.root.current = "loginScreen"
<RegisterScreen>:
name: "registerScreen"
firstname: firstname
lastname: lastname
username: username
password: password
GridLayout:
cols: 2
size_hint: 0.7, 0.25
size: 200, 100
pos_hint: {"y": 0.4}
Label:
text: "First Name:"
TextInput:
id: firstname
multiline: False
hint_text: "Enter first name here"
Label:
text: "Last Name:"
TextInput:
id: lastname
multiline: False
hint_text: "Enter last name here"
Label:
text: "Username:"
TextInput:
id: username
multiline: False
hint_text: "Enter username for your account"
Label:
text: "Password:"
TextInput:
id: password
multiline: False
hint_text: "Enter password for your account"
password: True
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
orientation: 'vertical'
pos_hint: {"x": 0.01, "y": 0.01}
Button:
text: "Submit" # POP UP FOR ALL DETAILS
on_release:
app.root.current = "homeScreen" if root.register() is True else "registerScreen"
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
pos_hint: {"x": 0.795, "y": 0.01}
orientation: "vertical"
Button:
text: "Go back"
on_release:
app.root.current = "welcomeScreen"
<LoginScreen>:
name: "loginScreen"
username: username
password: password
GridLayout:
cols: 2
size_hint: 0.7, 0.125
size: 200, 100
pos_hint: {"y": 0.45}
Label:
text: "Username:"
TextInput:
id: username
multiline: False
hint_text: "Enter username here"
Label:
text: "Password:"
TextInput:
id: password
multiline: False
hint_text: "Enter password here"
password: True
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
orientation: 'vertical'
pos_hint: {"x": 0.01, "y": 0.01}
Button:
text: "Continue" # POP UP FOR WRONG DETAILS
on_release:
app.root.current = "homeScreen" if root.login() is True else "loginScreen"
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
pos_hint: {"x": 0.795, "y": 0.01}
orientation: "vertical"
Button:
text: "Go back"
on_release:
app.root.current = "welcomeScreen"
<HomeScreen>:
name: "homeScreen"
BoxLayout:
size_hint: 0.2, 0.15
size: 200, 100
pos_hint: {"x": 0.01, "y": 0.85}
orientation: "vertical"
Label:
text: "Hello user!"
font_size: 30
bold: True
italic: True
BoxLayout:
size_hint: 0.2, 0.15
size: 200, 100
pos_hint: {"x": 0.01, "y": 0.45}
orientation: "vertical"
Button:
text: "Buy Meds"
on_release:
app.root.current = "buyMedsScreen"
Button:
text: "About"
on_release:
app.root.current = "aboutScreen"
Button:
text: "Quit"
on_release: root.exitApp()
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
orientation: 'vertical'
pos_hint: {"x": 0.01, "y": 0.01}
Button:
text: "Logout"
on_press: root.logout()
on_release:
app.root.current = "loginScreen"
<BuyMedicinesScreen>:
name: "buyMedsScreen"
medicine: medicine
GridLayout:
cols: 2
padding: 70
spacing: 50
Image:
source: "images/aspirin.webp"
Image:
source: "images/crocin.jpg"
Image:
source: "images/nexium.jpg"
Image:
source: "images/paracetamol.jpg"
BoxLayout:
size_hint: 0.721, 0.05
size: 200, 100
pos_hint: {"x": 0.15, "y": 0.9}
TextInput:
id: medicine
multiline: False
hint_text: "Choose from available medicines"
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
pos_hint: {"x": 0.01, "y": 0.01}
orientation: "vertical"
Button:
text: "Add to cart"
on_release:
app.root.current = "cartScreen" if root.addToCart() is True else "buyMedsScreen"
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
pos_hint: {"x": 0.795, "y": 0.01}
orientation: "vertical"
Button:
text: "Go back"
on_release:
app.root.current = "homeScreen"
<CartScreen>:
name: "cartScreen"
GridLayout:
cols: 1
pos_hint: {"y": 0.43}
Label:
font_size: 30
text: "Medicine Information"
bold: True
italic: True
GridLayout:
cols: 4
padding: 40
spacing: 40
Image:
source: "images/crocin.jpg"
Label:
text: root.infoCrocin()
color: "black"
Image:
source: "images/nexium.jpg"
Label:
text: root.infoNexium()
color: "black"
Image:
source: "images/paracetamol.jpg"
Label:
text: root.infoParacetamol()
color: "black"
Image:
source: "images/aspirin.webp"
Label:
text: root.infoAspirin()
color: "black"
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
orientation: 'vertical'
pos_hint: {"x": 0.01, "y": 0.01}
Button:
text: "Purchase"
on_release: root.billing()
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
pos_hint: {"x": 0.795, "y": 0.01}
orientation: "vertical"
Button:
text: "Go back"
on_release:
app.root.current = "buyMedsScreen"
<AboutScreen>:
name: "aboutScreen"
BoxLayout:
pos_hint: {"y": 0.4}
Label:
text: root.information()
italic: True
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
pos_hint: {"x": 0.01, "y": 0.01}
orientation: "vertical"
Button:
text: "Source Code"
on_press: root.linkToRepo()
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
pos_hint: {"x": 0.4, "y": 0.01}
orientation: "vertical"
Button:
text: "User Profile"
on_press: root.linkToProfile()
BoxLayout:
size_hint: 0.2, 0.05
size: 200, 100
pos_hint: {"x": 0.795, "y": 0.01}
orientation: "vertical"
Button:
text: "Go back"
on_release:
app.root.current = "homeScreen"