The Radio component draws an element for single selection.

Basic example:

<View>
{carBrandList.map(carBrand => ( // loop here
<View
key={carBrand}
sendFocusToInput
direction="row"
align="center"
marginBottom="small">
<Radio
name="CarBrands"
value={carBrand}
disabled={carBrand === 'Toyota'}
checked={this.state.selectedCarBrand === carBrand}
onChange={value => {
this.selectValue(value)
}}
/>
<Text marginLeft="nano">{carBrand}</Text>
</View>
))}
</View>

Has No Children

Hierarchy