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