CraftReactNativeCraftReactNative

Spacing

Spacing tokens for consistent padding, margins, and gaps.

View theme source
xxsmall2px
xsmall4px
small8px
medium12px
large16px
xlarge24px
xxlarge32px

Available tokens

  • xxsmall: 2px
  • xsmall: 4px
  • small: 8px
  • medium: 12px
  • large: 16px
  • xlarge: 24px
  • xxlarge: 32px

Usage

import { StyleSheet } from 'react-native-unistyles';
 
const styles = StyleSheet.create(theme => ({
  container: {
    padding: theme.spacing.large,
    gap: theme.spacing.medium,
    marginBottom: theme.spacing.small,
  },
}));

On this page