kivymd / KivyMD

KivyMD is a collection of Material Design compliant widgets for use with Kivy, a framework for cross-platform, touch-enabled graphical applications. https://youtube.com/c/KivyMD https://twitter.com/KivyMD https://habr.com/ru/users/kivymd https://stackoverflow.com/tags/kivymd
https://kivymd.readthedocs.io
MIT License
2.21k stars 663 forks source link

ImportError #1688

Closed TaqsBlaze closed 5 months ago

TaqsBlaze commented 5 months ago

Description of the Bug

Having ImportError when trying to import MDFillRoundFlatButton after updating to KivyMD v2.0.1.dev0 from commit cfe5aac

Code and Logs

from kivy.app import App
from Kivymd.uix.button import MDFillRoundFlatButton
from kivy.lang import Builder

kv = """
Screen:
    # KV-Code
"""

class MainApp(App):
    def build(self):
        self.root = Builder.load_string(kv)

if __name__ == '__main__':
    MainApp().run()

Versions

T-Dynamos commented 5 months ago

MDFillRoundFlatButton was removed in latest version https://kivymd.readthedocs.io/en/latest/components/button/#api-break.

TaqsBlaze commented 5 months ago

aaaah..... thank you didn't see anything about the change in docs before might have missed it thank you