VOOZH about

URL: https://gluestack.io/ui/docs/components/hstack

⇱ gluestack-ui HStack Component | Hstack React Native Installation


Home
Components
Hooks
Apps
Guides

HStack

Use the gluestack-ui HStack component in React Native to align elements horizontally. Easily customize layouts with spacing and reverse props. Learn how to install and use HStack today! This is an illustration of HStack component.
space
isReversed

Installation

Run the following command:

npx gluestack-ui@latest add hstack

API Reference

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

Component Props

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

HStack

HStack component is created using View component from react-native. It extends all the props supported by
React Native View
and the props mentioned below.
PropTypeDefaultDescription
space
string-It sets the space between children. By default there is no space between the HStack items.
reversed
booleanfalseWhen true, it places the HStack items in reverse direction.

Accessibility

The accessibility of a HStack is primarily determined by the accessibility information of the components it contains. When you pass an accessible component inside a HStack, its accessibility attributes, such as labels and hints, will be utilized by assistive technologies like screen readers.

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.

HStack Reversed

HStack component with the reversed prop reverses the order of horizontally stacked elements, allowing for customized layouts and visual arrangements of content within a user interface.
Edit this page on GitHub