A universal headless Checkbox component for React Native, Next.js & React
npm install @gluestack-ui/checkboxTo use @gluestack-ui/checkbox, all you need to do is install the@gluestack-ui/checkbox package:
``sh
$ yarn add @gluestack-ui/checkbox
$ npm i @gluestack-ui/checkbox
`
Whether you're building a simple form or a complex data collection system, the Checkbox component offers a user-friendly way for users to select multiple options from a list. Here's an example how to use this package to create one:
`jsx
import { Root, Indicator, Icon, Label, Group } from './styled-components';
import { createCheckbox } from '@gluestack-ui/checkbox';
export const Checkbox = createCheckbox({
Root,
Indicator,
Icon,
Label,
Group,
});
`
Default styling of all these components can be found in the components/core/checkbox file. For reference, you can view the source code of the styled Checkbox components.
`jsx
// import the styles
import {
Root,
Indicator,
Icon,
Label,
Group,
} from '../components/core/checkbox/styled-components';
// import the createCheckbox function
import { createCheckbox } from '@gluestack-ui/checkbox';
// Understanding the API
const Checkbox = createCheckbox({
Root,
Indicator,
Icon,
Label,
Group,
});
// Using the checkbox component
export default () => (
);
``
More guides on how to get started are available
here.