disabled
Description
defines whether the Text control is disabledType
boolean
Default
false
Example
<Text disabled={true} />
Details
It is also possible to set a text input to the disabled state by declaring the property with no value:
<Text disabled /> <!-- equals to "disabled={true}" -->
Related article: Setting the disabled state
Related sample: Text Inputs