import React from 'react'; import { Checkbox, Icon } from '@native-base/v3'; export default function () { const myRef: any = React.useRef({}); return ( } ref={myRef} onChange={(_, state) => { if (state) myRef?.current.setNativeProps({ backgroundColor: '#00de0050' }); else myRef?.current.setNativeProps({ backgroundColor: '#fa000050', }); }} > {' '} label ); }