LogoCraftReactNative
Components

Switch

A switch component that allows users to toggle between two states. It displays as a button that can be toggled on or off, commonly used for enabling or disabling features. Based on the React Native Switch component.

Component preview

Usage

Screen.tsx
import { Switch } from "@/craftrn-ui/components/Switch";
 
export const Screen = () => (
  <Switch value={value} onValueChange={(newValue) => console.log(newValue)} />
);

Props

Inherit all props from SwitchProps except trackColor, thumbColor, and style.

On this page