-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcustomwidget.kv
53 lines (43 loc) · 1023 Bytes
/
customwidget.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
'''
<CustButton@Button>:
font_size : 32
color: 0, 0, 0, 1
size: 150, 50
background_normal:''
background_down:'disk.png'
background_color:.88, .88, .88, 1
<CustomWidget>:
CustButton:
text: "Random"
pos: root.x, 200
CustButton:
text: "Random"
pos: 200, root.y
CustButton:
text: "Buttons"
pos: 200, 400
'''
<CustButton@Button>:
font_size : 32
color: 0, 0, 0, 1
size: 150, 50
background_normal:''
background_down:'disk.png'
background_color:.88, .88, .88, 1
size_hint: .4, .3
<FloatLayout>:
CustButton:
text: "Top Left"
pos_hint: {"x":0, "top": 1}
CustButton:
text: "Bottom Left"
pos_hint: {"right":1, "y": 0}
CustButton:
text: "Top Right"
pos_hint: {"right":1, "top": 1}
CustButton:
text: "Bottom Left"
pos_hint: {"left":1, "bottom": 0}
CustButton:
text: "Center"
pos_hint: {"center_x":.5, "center": .5}