gluestack-ui logo
Get Updates
Prompt to React Native UI
Home
Components
Hooks
Apps
MCP Server
Guides
Home
Overview
IntroductionQuick Start
Getting Started
InstallationTooling SetupVS Code ExtensionsFigma UI KitCLIgluestack-ui-nativewind-utils
Core Concepts
AccessibilityUniversal
Performance
Benchmarks
Theme Configuration
Default TokensCustomizing ThemeDark Mode
Components
All Components
Typography
HeadingrscTextrsc
Layout
BoxrscCenterrscDividerHStackrscVStackrscGridalpha, rsc
Feedback
AlertProgressSpinnerToast
Data Display
BadgeCardrscTablealpha
Forms
ButtonCheckboxFormControlInputLinkPressableRadioSelectSliderSwitchTextarea
Overlay
AlertDialogDrawerMenuModalPopoverPortalTooltip
Disclosure
ActionsheetAccordionBottomSheetalpha
Media And Icons
AvatarImageIconrsc
Others
FabSkeletonalpha, rsc
Hooks
useBreakPointValue
useMediaQuery
Apps
Dashboard App
Kitchensink App
Todo App
Starter Kit
MCP Server
MCP Server
Guides
Recipes
LinearGradient
Tutorials
Building Ecommerce App
More
Upgrade to v2Upgrade to v3FAQsReleasesRoadmapTroubleshootingDiscord FAQs

Radio

Enhance your UI with a React Native radio button. Easily integrate radio buttons component with full accessibility support. This is an illustration of Radio component.
size
isInvalid
isDisabled

Installation

Run the following command:

npx gluestack-ui add radio

API Reference

To use this component in your project, include the following import statement in your file.
import { Radio } from '@/components/ui/radio';
anatomy-imageanatomy-image
export default () => (
  <RadioGroup>
    <Radio>
      <RadioIndicator>
        <RadioIcon />
      </RadioIndicator>
      <RadioLabel />
    </Radio>
  </RadioGroup>
);

Component Props

This section provides a comprehensive reference list for the component props, detailing descriptions, properties, types, and default behavior for easy project integration.

Radio

Contains all Radio related layout style props and actions. It inherits all the properties of React Native's View component.
PropTypeDefaultDescription
value
string-The value to be used in the radio input. This is the value that will be returned on form submission.
onChange
function-Function called when the state of the radio changes.
isDisabled
boolfalseTo manually set disable to the radio.
isInvalid
boolfalseTo manually set invalid to the radio.
isHovered
boolfalseTo manually set hover to the radio.
isFocusVisible
boolfalseTo manually set focus visible state to the radio.
isIndeterminate
boolfalseTo manually set indeterminate to the radio.

RadioIndicator

Contains all Indicator related layout style props and actions. It inherits all the properties of React Native's View component.

RadioIcon

Contains all Icon related layout style props and actions. It inherits all the properties of gluestack Style's AsForwarder component.
PropTypeDefaultDescription
forceMount
booleanfalseForces mounting when more control is needed, useful for animations with React libraries.

RadioLabel

Contains all Label related layout style props and actions. It inherits all the properties of React Native's Text component.

RadioGroup

Contains all Group related layout style props and actions. It inherits all the properties of React Native's View component.
PropTypeDefaultDescription
value
string-The value of the radio group.
onChange
function-The callback fired when any children Radio is checked or unchecked.
isReadOnly
boolfalseTo manually set read-only to the radio group.

Features

  • Keyboard support for actions.
  • Support for hover, focus and active states.

Accessibility

We have outlined the various features that ensure the Radio component is accessible to all users, including those with disabilities. These features help ensure that your application is inclusive and meets accessibility standards. Adheres to the WAI-ARIA design pattern.

Keyboard

  • Tab
    : Moves focus to the next focusable element.
  • Shift + Tab
    : Moves focus to the previous focusable element.
  • Space
    : To check or uncheck focused radio.

Screen Reader

  • VoiceOver: When the radio is focused, the screen reader will announce it's a radio and it's current state (check or uncheck) and it's label.

Focus Management

  • The
    onFocus
    and
    onBlur
    props manage focus states and provide visual cues to users. This is especially important for users who rely on keyboard navigation.

States

  • In error state,
    aria-invalid
    will be passed to indicate that the radio input has an error, and providing support for an
    aria-errormessage
    to describe the error in more detail.
  • In disabled state,
    aria-hidden
    will be passed to make radio input not focusable.
  • In required state,
    aria-required
    will be passed to indicate that the radio input is required.

Props

Radio component is created using Pressable component from react-native. It extends all the props supported by React Native Pressable.

Data Attributes Table

Component receives states as props as boolean values, which are applied as
data-*
attributes. These attributes are then used to style the component via classNames, enabling state-based styling.
StateData AttributeValues
hover
data-hover
true | false
active
data-active
true | false
disabled
data-disabled
true | false
focusVisible
data-focus-visible
true | false
invalid
data-invalid
true | false

Examples

The Examples section provides visual representations of the different variants of the component, allowing you to quickly and easily determine which one best fits your needs. Simply copy the code and integrate it into your project.

Multiple Radio

Radio buttons provide a mutually exclusive selection mechanism, allowing users to choose a single option from a set of related choices.

Horizontal

Radio buttons can be used horizontally.

With help text

Radio buttons can be used with helper text.

Form Control

Radio buttons can be used inside FormControl for better control of states and functionality.

Label left

Radio buttons can be used horizontally

Controlled

The Radio components can be used with a controlled state, enabling precise management of the selected option through external state management.

Uncontrolled

The Radio components can be used with either a ref or no state, providing an uncontrolled state where the selected option is managed internally.

Radio group

The Radio group component allows users to group radio and display them in a horizontal or vertical row for better visual representation and functionality..
Edit this page on GitHub
Go backPressable
Up nextSelect
Go backPressable
Up nextSelect