readonly (boolean): If true, the input is read-only
disabled (boolean): If true, the input is disabled
Example Usage
import zero_true as ztsample_textarea = zt.TextArea(id='sample_textarea',# 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)