import { styled } from '@gluestack-style/react'; import { View } from 'react-native'; const StyledRoot = styled( View, { flexDirection: 'column', variants: { space: { 'xs': { gap: `$1`, }, 'sm': { gap: `$2`, }, 'md': { gap: `$3`, }, 'lg': { gap: `$4`, }, 'xl': { gap: `$5`, }, '2xl': { gap: `$6`, }, '3xl': { gap: `$7`, }, '4xl': { gap: `$8`, }, }, reversed: { true: { flexDirection: 'column-reverse', }, }, }, }, {} ); export const VStack = StyledRoot;