code/tamagui.dev/data/docs/components/switch/1.89.0.mdx
<Tabs.Content value="styled">
</Tabs.Content> <Tabs.Content value="unstyled">
</Tabs.Content> <Tabs.Content value="headless">
</Tabs.Content>
<Highlights
features={[
Accessible, easy to compose and customize.,
Style and animate both frame and thumb.,
Sizable & works controlled or uncontrolled.,
Native prop that renders native Switch on mobile,
]}
/>
<Tabs.Content value="styled">
Switch is already installed in tamagui, or you can install it independently:
npm install @tamagui/switch
</Tabs.Content>
<Tabs.Content value="unstyled">
Switch is already installed in tamagui, or you can install it independently:
npm install @tamagui/switch
</Tabs.Content>
<Tabs.Content value="headless">
To use the headless switch, you want to import it from the
@tamagui/switch-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/switch-headless
</Tabs.Content>
<Tabs.Content value="styled">
import { Switch } from 'tamagui' // or '@tamagui/switch'
export default () => (
<Switch size="$4">
<Switch.Thumb animation="bouncy" />
</Switch>
)
</Tabs.Content>
<Tabs.Content value="unstyled">
Using the createSwitch export, you can create an unstyled switch without using
any of the default styles. This is similar to the unstyled prop, but it
doesn't assume the props size or unstyled exist, and it won't automatically
apply the active theme.
You must pass SwitchContext as the context option to your Frame and Thumb
styled components.
If you define a checked variant, it will apply those styles.
</Tabs.Content>
<Tabs.Content value="headless">
Using the useSwitch API, you can make your own Switch from scratch.
</Tabs.Content>
Switch extends Stack views inheriting all the
Tamagui standard 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: 'onCheckedChange',
type: '(checked: boolean) => void',
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: When true, remove all default tamagui styling.,
},
{
name: 'native',
type: 'NativeValue<"mobile" | "ios" | "android">',
description: Render to a native switch. (Not supported on web),
},
{
name: 'nativeProps',
type: 'SwitchProps (from react-native)',
description: Props to pass to the native Switch;,
},
]}
/>
Switch.Thumb extends Stack views inheriting all the
Tamagui standard props, plus:
<PropsTable
data={[
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: When true, remove all default tamagui styling.,
},
]}
/>