KivyMD
KivyMD copied to clipboard
MDTextFieldHelperText is missing
MDTextField:
size_hint_x: 1
mode: "outlined"
pos_hint: {"center_x": .5, "center_y": .5}
multiline: True
id: title
MDTextFieldMaxLengthText:
max_text_length: 55
MDTextFieldHelperText:
text: "Helper text"
mode: "persistent"
I have only problem when trying to use MDTextField on ModalView or Popup of Kivy. MDTextFieldHintText works. Icons and Helper Text doesn't show up if defined via kv lang. Add_widget method is the way around currently like: modal = ModalView() modal.add_widget(MDTextField(MDTextFieldHintText(text='test'),MDTextFieldLeadingIcon(icon='information'),MDTextFieldHelperText(text='test', mode='persistent'),MDTextFieldTrailingIcon(icon='information')))
Any update for this issue ? it's a duplicate of my #1712
Not yet