import React from 'react'; import { Radio } from 'native-base'; import { Platform } from 'react-native'; export const Example = () => { const myRef = React.useRef({}); return ( { if (value === '2') { if (Platform.OS !== 'web') myRef?.current?.setNativeProps({ backgroundColor: '#00de0050' }); } else { if (Platform.OS !== 'web') myRef?.current?.setNativeProps({ backgroundColor: '#fa000050', }); } }} > Wrong Right ); };