import { Dimensions } from 'react-native'; export const BOTTOM_SHEET_OVER_FULLSCREEN_PERCENTAGE_SIZE = 0.9; // Fallback value for components rendered outside the measured container (e.g. UNAddToWalletComponent). // The bottom sheet itself uses layout-measured containerHeight instead of this value. export const overFullScreenHeight = Dimensions.get('screen').height * BOTTOM_SHEET_OVER_FULLSCREEN_PERCENTAGE_SIZE; export const TOP_PADDING = 48; export const BOTTOM_PADDING = 24; export const LEFT_PADDING = 24; export const RIGHT_PADDING = 24; export const VERTICAL_PADDING = TOP_PADDING + BOTTOM_PADDING; // For adjusting injected height