UNPKG

@uiw/react-native

Version:
12 lines 255 B
import React from 'react'; import Switch from '../../Switch'; const FormSwitch = ({ value, onChange, ...others }) => { return <Switch checked={value} onValueChange={() => { onChange?.(!value); }} {...others} />; }; export default FormSwitch;