8 lines
145 B
Python
8 lines
145 B
Python
from kivy.uix.boxlayout import BoxLayout
|
|
from kivy.properties import StringProperty
|
|
|
|
|
|
class StatusBar(BoxLayout):
|
|
|
|
text = StringProperty('')
|