forked from hansent/radide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.kv
41 lines (37 loc) · 897 Bytes
/
test.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
<AppScreen>:
canvas:
Color:
rgba: 1,1,1,1
Rectangle:
size:self.size
BoxLayout:
id:app_layout
<TestScreen>
BoxLayout:
orientation:'vertical'
BoxLayout:
Button:
text: "Button 1"
Button:
text: "Button 2"
Label:
text: "Label 3"
Button:
text: "Button 4"
BoxLayout:
orientation:'vertical'
Button:
text: "Button A"
Button:
text: "Button B"
Button:
text: "Button C"
Button:
text: "Button D"
Scatter:
size: testimage.texture_size
size_hint: (None, None)
Image:
id: testimage
size: self.texture_size
source: "kivy.jpg"