Open Noitidart opened 6 years ago
When the radio is off, button is still retaining the color. It should be uncolored when disabled. I tried to do a color={value ? 'blue' : undefined} however this causes error with problems updating color.
color={value ? 'blue' : undefined}
<RadioButton value={!!value} onValueChange={this.handleValueChange} disabled={disabled} color="blue" />
When the radio is off, button is still retaining the color. It should be uncolored when disabled. I tried to do a
color={value ? 'blue' : undefined}
however this causes error with problems updating color.