-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDatabaseScreen.kv
More file actions
51 lines (40 loc) · 1.1 KB
/
DatabaseScreen.kv
File metadata and controls
51 lines (40 loc) · 1.1 KB
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
<BigButton@Button>:
font_size: 32
color: 0, 0, 0, 1
background_normal: 'grey.jpg'
background_down: ''
background_color: .88, .88, .88, 1
size_hint: .7, .7
<MiniButton@Button>:
font_size: 16
color: 0, 0, 0, 1
background_normal: 'grey.jpg'
background_down: ''
background_color: .88, .88, .88, 1
size_hint: .1, .1
<StandardButton@Button>:
font_size: 16
color: 0, 0, 0, 1
background_normal: 'grey.jpg'
background_down: ''
background_color: .88, .88, .88, 1
size_hint: .2, .1
<FloatLayout>:
MiniButton:
text: "Back"
pos_hint: {"top": 1}
StandardButton:
text: "Your Grocery Inventory"
pos_hint: {"center_x": .5, "top": 1}
MiniButton:
text: "Delete"
pos_hint: {"center_x": .2 , "center_y": .1}
StandardButton:
text: "Search Recipes"
pos_hint: {"center_x": .38, "center_y": .1}
MiniButton:
text: "Add"
pos_hint: {"center_x": .56, "center_y": .1}
BigButton:
text: "Database Table Here"
pos_hint: {"center_x": .5, "center_y": .5}