Material Design components for the Kivy framework
KivyMD is a collection of Material Design compliant widgets for use with the Kivy cross-platform UI framework. It enhances the visual appeal of applications by providing a variety of pre-designed, easy-to-use UI components that follow Google's Material Design principles.
Key Features:
Common Use Cases:
pip install kivy
pip install kivymd
from kivy.lang import Builder
from kivy.uix.screenmanager import Screen
from kivymd.app import MDApp
from kivymd.uix.button import MDFloatingActionButton
from kivymd.uix.label import MDLabel
KV = '''
Screen:
MDFloatingActionButton:
icon: "plus"
pos_hint: {"center_x": .5, "center_y": .5}
on_release:
app.on_button_press()
'''
class ExampleApp(MDApp):
def build(self):
return Builder.load_string(KV)
def on_button_press(self):
print("Button Pressed!")
if __name__ == "__main__":
ExampleApp().run()