npm install @react-native-community/checkbox
import CheckBox from '@react-native-community/checkbox';
const [agree, setAgree] = useState(false);
<CheckBox value={agree} onChange={() => setAgree(!agree)} />
This is simple and clear example how checkbox works