Answers for "kivy labels background"

0

kivy labels background

Label:
        text: "the text"
        font_size: self.width/5
        size_hint: .6 , .15
        pos_hint:{"x":.18, "y":.8}
        background_color: ((20/255,32/255,40/255,1))
        canvas.before:
            Color:
                rgba: self.background_color
            Rectangle:
                pos: self.pos
                size: self.size
Posted by: Guest on January-14-2022

Browse Popular Code Answers by Language