Use Switch for single cell options that can be turned on and off only. If you have a cell with multiple options that can activated, consider using Checkbox.

Switch supports right-to-left(RTL) language locales layout (auto flip on RTL locales like Arabic).

also known as Toggle, Slide Toggle

Web:

iOS:

Android:

A11y:

Props

Component props
Name
Type
Default
id
Required
string
-

A unique identifier for the element.

onChange
Required
({| event: SyntheticInputEvent<>, value: boolean |}) => void
-

Callback triggered when the user interacts with the input.

disabled
boolean
-

Indicates if the input is currently disabled. See Switch combinations for more details.

name
string
-

A unique name for the element.

switched
boolean
-

Indicates the current value of the input. See Switch combinations for more details.

Usage guidelines

When to use
  • For a binary option that can be either active or inactive.
  • Typically used on mobile, where toggling the Switch takes immediate effect.
When not to use
  • Choosing between related options. Each Switch should be considered a solitary, standalone option. For multiple, related choices, use Checkboxes or RadioGroup instead.

Best practices

Do

Use a label to give Switch context when possible.

Don't

Truncate label text. Instead, allow it to wrap to form another line.

Do

Communicate why a switch is disabled and how to enable it if possible.

Don't

Use alternative styling to represent the functionality of a switch. Use Switch instead.

Accessibility

Switches should have Labels that can be read by screen readers, and that can be clicked or tapped to make it easier for users to select and deselect. Make sure Label has an htmlFor prop that matches the id on the Switch. Test that the Switch and Label are properly connected by clicking or tapping on the label and confirming that it activates the Switch next to it.

Keyboard navigation

Switch has conventional keyboard support.

  • Users relying on the keyboard expect to move focus to the Switch by using the tab key or shift+tab when moving backwards.
  • Setting disabled will prevent Switch from receiving keyboard focus or input.
  • Once focused, the Space key toggles the Switch.

Localization

Be sure to localize label and subtext. Be mindful of label length so that it doesn’t truncate in languages with lengthier character counts.

Variants

With a label

Whenever using Switch, always use a Label with it to make your component accessible.

Disabled and switched combinations

Writing

Do
  • Be clear and brief with Switch labels so they can be easily understood.
  • When possible, use verbs to clarify the action. Something like “set…” or “show…”.
  • If possible, be clear whether the setting is activated or deactivated.
  • Use sentence case for labels.
Don't
  • Use vague language out of context, like “turn on” or “turn off” repeating the state of the switch is redundant and can clutter the interface.
  • Don’t use “you,” “your,” or “my” to describe an action. Instead describe switches objectively.

RadioGroup
Use when presenting a user with a list of choices for which there can only be one selection.

Checkbox
Used when presenting a user with a list of choices for which there can be multiple selections.

Fieldset
Used to group a list of related Switches with a legend that describes the list.

Component quality checklist

Component quality checklist
Quality item
Status
Status description
Figma Library
Partially ready
Component is live in Figma, however may not be available for all platforms.
Responsive Web
Ready
Component is available in code for web and mobile web.
iOS
Component is not currently available in code for iOS.
Android
Component is not currently available in code for Android.