kivy.factory.FactoryException: Unknown class
kivy.factory.FactoryException: Unknown class <MDTextFieldRound>
kivy.factory.FactoryException: Unknown class <MDTextFieldRound>
exception occurs if you are using latest version of kivymd.
MDTextFieldRound
was available in kivymd version 0.104.1.
In the latest version there is only MDTextFieldRound
.
So what about MDTextFieldRound
?
Is it removed? Yes.
Alternative? Yes, you can use MDTextField
and use the property mode
with value round.
Example below
MDTextField:
hint_text: "round mode"
mode: "round"
Comments