-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.kv
31 lines (31 loc) · 779 Bytes
/
app.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
<VideoPreviewWidget>:
Image:
id: img_left
source: "img/bad_camera.png"
allow_stretch: True
size_hint: None, None
size: 640, 480
animation_offset: .1
BoxLayout:
orientation: 'vertical'
size_hint_x: None
width: 160
spacing: 40
padding: 20, 0, 20, 0
Widget:
Button:
text: 'START'
on_release: root.on_btn_start()
size_hint_y: None
height: 50
Button:
text: 'STOP'
on_release: root.on_btn_stop()
size_hint_y: None
height: 50
Button:
text: 'EXIT'
on_release: app.stop()
size_hint_y: None
height: 50
Widget: