readonly (boolean): If true, the input is read-only
disabled (boolean): If true, the input is disabled
Example Usage
import zero_true as ztsample_textinput = zt.TextInput(id='sample_textinput',# Unique id for a component hint ='Press Enter to Submit',# Hint text for the text input value ='',# The input text value placeholder ='',# Placeholder text label ='',# Label for the text input readonly =False,# If true, the input is read-only disabled =False,# If true, the input is disabled)