LogoCraftReactNative
Components

Radio

A radio button component that allows users to select a single option from a set of choices. It displays as a circular button that can be either checked or unchecked.

Component preview

Usage

Screen.tsx
import { Radio } from "@/craftrn-ui/components/Radio";
 
export const Screen = () => <Radio checked={true} />;

Props

PropTypeDefault
checked
boolean
-
onChange
(checked: boolean) => void
-
disabled?
boolean
-

On this page