code/tamagui.dev/data/docs/components/checkbox/2.0.0.mdx
<Tabs.Content value="styled">
</Tabs.Content> <Tabs.Content value="unstyled">
</Tabs.Content> <Tabs.Content value="headless">
</Tabs.Content>
<Highlights
features={[
Supports indeterminate state.,
Accessible, easy to compose and customize.,
Sizable & works controlled or uncontrolled.,
Ability to opt-out to native checkbox on web.,
]}
/>
<Tabs.Content value="styled">
Checkbox is already installed in tamagui, or you can install it independently:
npm install @tamagui/checkbox
</Tabs.Content>
<Tabs.Content value="unstyled">
Checkbox is already installed in tamagui, or you can install it independently:
npm install @tamagui/checkbox
</Tabs.Content>
<Tabs.Content value="headless">
To use the headless checkbox, you want to import it from the
@tamagui/checkbox-headless package. This package has no dependency on
@tamagui/core, but still works off the react-native APIs.
This means you can bring your own style library.
npm install @tamagui/checkbox-headless
</Tabs.Content>
<Tabs.Content value="styled">
import { Check } from '@tamagui/lucide-icons-2'
import { Checkbox } from 'tamagui'
export default () => (
<Checkbox size="$4">
<Checkbox.Indicator>
<Check />
</Checkbox.Indicator>
</Checkbox>
)
</Tabs.Content>
<Tabs.Content value="unstyled">
Use the createCheckbox export to create a fully custom checkbox that still
uses the Tamagui styling system. This is similar to setting unstyled, but goes
a bit further. It doesn't add any types for size or unstyled, and it won't
automatically apply the active theme. It does pass the checked prop down as
indicated in the types of createCheckbox.
</Tabs.Content>
<Tabs.Content value="headless">
The useCheckbox hook provides all the state and accessibility props needed to build a custom checkbox with any styling solution.
import { useCheckbox } from '@tamagui/checkbox-headless'
import { useState } from 'react'
import { Pressable, View } from 'react-native'
function MyCheckbox({ defaultChecked, onCheckedChange, ...props }) {
const [checked, setChecked] = useState(defaultChecked || false)
const { checkboxProps, checkboxRef, bubbleInput } = useCheckbox(
props,
[checked, setChecked],
null
)
return (
<>
<Pressable
ref={checkboxRef}
{...checkboxProps}
style={{
width: 24,
height: 24,
borderRadius: 4,
borderWidth: 2,
borderColor: checked ? '#3b82f6' : '#d1d5db',
backgroundColor: checked ? '#3b82f6' : 'transparent',
justifyContent: 'center',
alignItems: 'center',
}}
>
{checked && <View style={{ width: 12, height: 12, backgroundColor: 'white' }} />}
</Pressable>
{bubbleInput}
</>
)
}
</Tabs.Content>
Checkbox extends ThemeableStack inheriting all the
props, plus:
<PropsTable
data={[
{
name: 'labeledBy',
type: 'string',
description: Set aria-labeled-by.,
},
{
name: 'name',
type: 'string',
description: Equivalent to input name.,
},
{
name: 'value',
type: 'string',
description: Give it a value (for use in HTML forms).,
},
{
name: 'checked',
type: 'boolean',
description: Control the input.,
},
{
name: 'defaultChecked',
type: 'boolean',
description: Uncontrolled default value.,
},
{
name: 'required',
type: 'boolean',
description: Sets aria-required.,
},
{
name: 'native',
type: 'boolean',
description: Renders native checkbox input on web.,
default: false,
},
{
name: 'onCheckedChange',
type: '(checked: boolean | "indeterminate") => void',
description: 'Callback that fires when the checkbox state is changed.',
},
{
name: 'sizeAdjust',
type: 'number',
description: Adjust the checkbox size scaling by this number.,
},
{
name: 'scaleIcon',
type: 'number',
description: Scale the indicator icon more than usual by this number.,
},
{
name: 'scaleSize',
type: 'number',
default: '0.5',
description: The Tamagui size tokens should map to the height of a button at any given step. This means you want somewhat smaller checkboxes typically.,
},
{
name: 'unstyled',
required: false,
type: boolean,
description: Removes all default Tamagui styles.,
},
{
name: 'activeStyle',
required: false,
type: StyleProp,
description: Styles to apply when the checkbox is checked.,
},
{
name: 'activeTheme',
required: false,
type: string | null,
description: Theme to apply when the checkbox is checked. Set to null for no theme change.,
},
]}
/>
Checkbox.Indicator extends ThemeableStack inheriting all the
props, plus:
<PropsTable
data={[
{
name: 'forceMount',
required: false,
type: boolean,
description: Used to force mounting when more control is needed.,
},
{
name: 'disablePassStyles',
required: false,
type: 'boolean',
description: Used to disable passing styles down to children.,
},
]}
/>
<Tabs.Content value="headless">
The useCheckbox hook accepts three arguments:
const { checkboxProps, checkboxRef, bubbleInput } = useCheckbox(
props, // CheckboxProps
state, // [checked: CheckedState, setChecked: (checked: CheckedState) => void]
ref // React.Ref
)
The checkbox supports three states:
true - checkedfalse - unchecked'indeterminate' - indeterminate/mixed state (useful for "select all" patterns)<PropsTable
data={[
{
name: 'labelledBy',
type: 'string',
description: Set aria-labelledby for accessibility.,
},
{
name: 'disabled',
type: 'boolean',
description: Whether the checkbox is disabled.,
},
{
name: 'name',
type: 'string',
description: Form input name for the hidden input.,
},
{
name: 'value',
type: 'string',
default: '"on"',
description: Form input value.,
},
{
name: 'required',
type: 'boolean',
description: Whether the checkbox is required in a form.,
},
{
name: 'onCheckedChange',
type: '(checked: CheckedState) => void',
description: Called when checked state changes.,
},
{
name: 'onPress',
type: '(event) => void',
description: Called when checkbox is pressed (composed with internal handler).,
},
]}
/>
A tuple of [checked, setChecked] where:
checked: Current state (boolean | 'indeterminate')setChecked: React state setter function| Property | Type | Description |
|---|---|---|
checkboxProps | object | Props to spread on your checkbox element (role, aria-checked, onPress, etc.) |
checkboxRef | Ref | Composed ref to attach to your checkbox element |
bubbleInput | ReactNode | null | Hidden input for form compatibility (render as sibling, web only) |
</Tabs.Content>
</Tabs>