import React from 'react'; import { RadioGroup, Radio, Icon } from '@native-base/v3'; export default function () { const myRef: any = React.useRef({}); return ( { if (value === '2') myRef?.current.setNativeProps({ backgroundColor: '#00de0050' }); else myRef?.current.setNativeProps({ backgroundColor: '#fa000050', }); }} > } value="1" > Wrong } ref={myRef} value="2" > Correct ); }