You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code will produce an app with a single MDTextField at the center. The text field will have a helper text displaying "Helper Text". So far everything works fine. But now take a look at the following:
This app is almost the same as the one above, except that you first have to click the button in the bottom left before the text field appears. However, once the text field has appeared it does not display a helper text.
Side Note:
If you assign the MDTextField to a variable and then call its apply_class_lang_rules method without any arguments, the helper text will actually show up. This is not exactly a fix though, because for a text field with mode="on_error" this would make the helper text show until the text field first receives focus, even if no error is present. After that the helper text will behave as intended.
Versions
OS: Windows 10
Python: 3.10.11
Kivy: 2.3.0
KivyMD: 2.0.1.dev0
The text was updated successfully, but these errors were encountered:
Description of the Bug
Consider the example below:
This code will produce an app with a single
MDTextField
at the center. The text field will have a helper text displaying"Helper Text"
. So far everything works fine. But now take a look at the following:This app is almost the same as the one above, except that you first have to click the button in the bottom left before the text field appears. However, once the text field has appeared it does not display a helper text.
Side Note:
If you assign the
MDTextField
to a variable and then call itsapply_class_lang_rules
method without any arguments, the helper text will actually show up. This is not exactly a fix though, because for a text field withmode="on_error"
this would make the helper text show until the text field first receives focus, even if no error is present. After that the helper text will behave as intended.Versions
The text was updated successfully, but these errors were encountered: