import { View, ViewStyle, StyleProp } from 'react-native'; type Align = 'flex-start' | 'center' | 'flex-end' | 'stretch' | 'baseline'; type Justify = | 'flex-start' | 'center' | 'flex-end' | 'space-between' | 'space-around' | 'space-evenly'; type StackProps = { gap?: number; align?: Align; justify?: Justify; wrap?: boolean; style?: StyleProp; children?: React.ReactNode; }; export function HStack({ gap = 0, align = 'center', justify = 'flex-start', wrap = false, style, children, }: StackProps) { return ( {children} ); } export function VStack({ gap = 0, align = 'stretch', justify = 'flex-start', wrap = false, style, children, }: StackProps) { return ( {children} ); } export const Spacer = ({ flex = 1 }: { flex?: number }) => ;