/usr/share/kivy-examples/container/kv/3.kv is in python-kivy-examples 1.9.1-1build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #:kivy 1.8.0
#:import datetime datetime
RootWidget:
# import container
container: container
# fill the container
BoxLayout:
id: container
orientation: 'vertical'
padding: 0
spacing: 3
Label:
text: 'screen-3'
BoxLayout:
orientation: 'horizontal'
padding: 0
spacing: 1
size_hint: 1, 0.1
# weiter button
Button:
size_hint: 0.2, 1
text: 'next'
on_release: app.next_screen('1')
|