CheckBox

import React from 'react';
import { View } from 'react-native';
import { CheckBox } from 'monalisa-ui';
const Example = () => (
<View>
<CheckBox />
<CheckBox value={true} />
<CheckBox label="This is CheckBox" />
<CheckBox uncheckColor="#ff0000" activeOpacity={0.8} />
<CheckBox checkColor="#ff0000" value={true} activeOpacity={0.8} />
<CheckBox disabled />
<CheckBox onChange={value => alert(value)} />
</View>
);
export default Example;Configuration
Last updated