Код: Выделить всё
KV = """
MDScreen:
md_bg_color: self.theme_cls.backgroundColor
MDTextFieldHintText:
text: "font_size works here..."
theme_font_size: "Custom"
font_size: "40dp"
MDTextField:
mode: "outlined"
theme_font_size: "Custom"
font_size: "50dp"
MDTextFieldHintText:
text: "...but font_size doesn't work here"
theme_font_size: "Custom"
font_size: "40dp"
"""
class MainApp(MDApp):
def build(self):
self.theme_cls.theme_style = "Light"
screen = Builder.load_string(KV)
return screen
MainApp().run()
Подробнее здесь: https://stackoverflow.com/questions/796 ... dtextfield