-
Notifications
You must be signed in to change notification settings - Fork 0
/
addp.kv
55 lines (50 loc) · 1.1 KB
/
addp.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
#:include menu.kv
<Addp>:
GridLayout
rows: 12
cols: 2
padding: 5
spacing: 2
Label:
text: 'Adding new patient:'
font_size:24
Label:
text:' '
Label:
text: 'Name'
TextInput:
id:name
Label:
text: 'Last Name'
TextInput:
id:last_name
Label:
text: 'Minimal temperature'
TextInput:
id:tempmin
Label:
text: 'Maximal temperature'
TextInput:
id:tempmax
Label:
text: 'Minimal humidity'
TextInput:
id:hummin
Label:
text: 'Maximal humidity'
TextInput:
id:hummax
Label:
text: 'Light determinant Yes/No'
TextInput:
id:light
Label:
text: 'Additional information'
TextInput:
id:note
Button:
text: 'Back'
on_press: root.Back()
Button:
text: 'Add'
on_press: root.ExitApp()