UNPKG

create-nova-expo-template

Version:

A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.

14 lines (12 loc) 405 B
import { ReactNode } from "react"; import { ViewStyle } from "react-native"; export interface ScreenWrapperProps { children: ReactNode; justifyContent?: ViewStyle["justifyContent"]; customStyle?: ViewStyle; hasNoHorizontalSpacing?: boolean; hasNoKeyboardVerticalOffset?: boolean; paddingHorizontalSize?: "sm" | "md"; paddingBlockSize?: "sm" | "md"; isScrollable?: boolean; }