Checkbox
Checkboxes allow the selection of multiple options from a set.
Usage
import * as React from 'react';
import { Checkbox } from 'react-native-paper';
const MyComponent = () => {
const [checked, setChecked] = React.useState(false);
return (
<Checkbox
status={checked ? 'checked' : 'unchecked'}
onPress={() => {
setChecked(!checked);
}}
/>
);
};
export default MyComponent;
Props
theme
Type:
Theme
Static properties
These properties can be accessed on Checkbox
by using the dot notation, e.g. Checkbox.Item
.
Item
Type:
static
Android
Type:
static
IOS
Type:
static