import React from 'react'; import { StyleSheet } from 'react-native'; import CheckBoxBase from '@react-native-community/checkbox'; const CheckBox = ({ value=false, disabled=false, onValueChange, iosSize=24 }) => { if (isIOS) { return ( { if (onValueChange) onValueChange(!value) }} /> ); } else { return ( ) } } const styles = StyleSheet.create({ checkBoxView: { padding: 4 } }) export default CheckBox;