23 lines
303 B
Plaintext
23 lines
303 B
Plaintext
|
#:kivy 1.0
|
||
|
|
||
|
<guiApp>:
|
||
|
Button:
|
||
|
id: prev
|
||
|
|
||
|
size_hint_x: None
|
||
|
width: 100
|
||
|
|
||
|
text: '<<'
|
||
|
on_press: root._prevAction()
|
||
|
Label:
|
||
|
text_size: 300, None
|
||
|
id: Message
|
||
|
text: 'no VDM load for the moment'
|
||
|
Button:
|
||
|
id: next
|
||
|
|
||
|
size_hint_x: None
|
||
|
|
||
|
width: 100
|
||
|
text: '>>'
|
||
|
on_press: root._nextAction()
|