Spinner

Visual feedback during processing or expected changes, enhancing user experience by minimizing uncertainty and frustration.
Installation
API Reference
Important Note
This is the documentation for gluestack-ui v2 (beta). For @gluestack-ui/themed (stable) documentation, refer to gluestack-ui v1.
This is an illustration of Spinner component.
size
<Spinner size="small" color={colors.gray[500]} />

Installation

Run the following command:

npx gluestack-ui add spinner

API Reference

To use this component in your project, include the following import statement in your file.
import { Spinner } from "@/components/ui/spinner"
export default () => <Spinner />

Component Props

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

Spinner

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

Accessibility

We have outlined the various features that ensure the Fab component is accessible to all users, including those with disabilities. These features help ensure that your application is inclusive and meets accessibility standards.

Keyboard

  • Tab: Moves focus to the next focusable element.

Screen Reader

  • VoiceOver: When the Spinner is focused, the screen reader will announce the loading indicator.

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.

Spinner with Label

A Spinner component with a label provides informative text or a label alongside the spinner, offering descriptive context and improving user understanding and interaction with the spinner element within a user interface.
<HStack space="sm">
<Spinner />
<Text size="md">Please Wait</Text>
</HStack>

Color Scheme

A Spinner component with a color scheme enhances visual appeal by incorporating distinct colors, adding a touch of customization and style to the spinner element within a user interface.
<VStack space="md">
{/* colors is imported from 'tailwindcss/colors' */}
<Spinner color={colors.indigo[600]} />
<Spinner color={colors.emerald[600]} />
<Spinner color={colors.amber[600]} />
<Spinner color={colors.fuchsia[600]} />
</VStack>