Current behaviour
Checkbox on iOS is no visible if not checked.
Expected behaviour
Code sample
Use the demo from docs
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;
Screenshots (if applicable)
Unchecked state:

Checked state:

What have you tried
Used official docs https://callstack.github.io/react-native-paper/checkbox.html
Also not style property to checkbox?


Your Environment
| software |
version |
| ios or android |
iOS or web case with expo |
| react-native |
0.63.3 |
| react-native-paper |
4.3.0 |
| node |
v12.16.1 |
| npm or yarn |
6.13.4 |
| expo sdk |
39.0.0 |
Current behaviour
Checkbox on iOS is no visible if not checked.
Expected behaviour
Code sample
Use the demo from docs
Screenshots (if applicable)
Unchecked state:
Checked state:
What have you tried
Used official docs https://callstack.github.io/react-native-paper/checkbox.html
Also not
styleproperty to checkbox?Your Environment