-
Notifications
You must be signed in to change notification settings - Fork 1
/
grid3.kv
55 lines (49 loc) · 1003 Bytes
/
grid3.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
GridLayoutExample:
<GridLayoutExample>:
# rows
# cols
#cols: 3
rows: 2
Button:
text: "How"
size_hint: None, 1
width: "200dp"
Button:
text: "Are"
size_hint: None, 1
width: "200dp"
BoxLayoutExample:
Button:
text: "You"
Button:
text: "Hope"
size_hint: None, 1
width: "100dp"
Button:
text: "Everything"
Button:
text: "Fine"
<BoxLayoutExample>:
orientation: "horizontal"
Button:
text: "A"
size_hint: .5, .5
# size: "100dp", "60dp"
# width: "100dp"
# height: "60dp"
# x, center_x, right
# y, center_y, top
pos_hint: { "center_y": .5 }
BoxLayout:
orientation: "vertical"
spacing: "10dp"
Button:
text: "B1"
Button:
text: "B2"
Button:
text: "B3"
Button:
text: "B4"
Label:
text: "C"