-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard.kv
More file actions
32 lines (26 loc) · 685 Bytes
/
Copy pathcard.kv
File metadata and controls
32 lines (26 loc) · 685 Bytes
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
<MD3Card>:
padding: 4
size_hint: None, None
size: "200dp", "100dp"
MDRelativeLayout:
id: relative
MDIconButton:
id: button
icon: root.icon
icon_size: "80dp"
pos_hint: {"top": 1, "right": 1}
on_release: root.on_button_click()
MDLabel:
id: label
text: root.text
adaptive_size: True
color: "grey"
pos: "12dp", "12dp"
bold: True
MDScreen:
MDStackLayout:
id: stack
orientation: "lr-tb"
spacing: [50, 30]
padding: [50,200,0,0]
pos_hint: {"center_x": .5, "center_y": .5}