@rnui/checkbox
v1.0.3
Published
```bash yarn add react-native-svg @rnui/checkbox ```
Downloads
11
Readme
Installation
yarn add react-native-svg @rnui/checkbox
Link
# RN < 0.60
react-native link react-native-svg
# RN >= 0.60
cd ios && pod install && cd ..
Usage
import React from 'react';
import { UICheckbox } from '@rnui/checkbox';
const App = () => {
return <UICheckbox>Hello World</UICheckbox>;
};