What is KivyMD ?? https://github.com/HeaTTheatR/KivyMD
- Less code. More beautiful design
Material design ??? https://material.io/design/introduction
from kivymd.app import MDApp
#class name == app_name :)
class DemoApp(MDApp):
def build(self):
return
DemoApp().run()
-
theme_colors https://raw.githubusercontent.com/HeaTTheatR/KivyMD-data/master/gallery/kivymddoc/md-label-theme-text-color.png
-
Custom color
-
MDIcons https://github.com/HeaTTheatR/KivyMD/blob/master/kivymd/icon_definitions.py
label = MDLabel(text="Hello world", halign="center", theme_text_color="Error",
font_style="Subtitle2")
label = MDLabel(text="Hello world", halign="center",theme_text_color="Custom",
text_color=(0,0,1,1))
# icon
label = MDIcon(icon="language-python", halign="center")