9 lines
206 B
Python
9 lines
206 B
Python
|
from kivy.uix.label import Label
|
||
|
from kivy.graphics import Color,Rectangle
|
||
|
|
||
|
class Status_bar(Label):
|
||
|
|
||
|
def __init__(self,**kwargs):
|
||
|
# init Label
|
||
|
super(Status_bar,self).__init__(**kwargs)
|