Optional
checkedIndicates whether the component is selected.
Example:
<Radio checked={true} />
Optional
disabledIndicates whether the component is disabled and can't be selectable
Example:
<Radio disabled={true} />
Optional
id"Fills the ID of the element (not very practical)."
Example:
<View id="id" />
The name of the radio component's option group.
Example:
<Radio name="" />
Function called when the component's value is changed. Receives the new selected value as an argument.
Example:
<Radio onChange={this.myFuncion} />
Optional
transform"Prepare a position transforming of element"
Example:
<View transform="rotate(45deg)" />
Optional
transition"Prepare a transition of visual state change"
Example:
<View transition="background-color 0.5s ease-in-out" />
The value associated to the component.
Example:
<Radio value="" />
Optional
visual"Determines the visual state of the component and its children."
Example:
<View visualState="success" />
Acceptable Radio properties