Interface defining the additional props for resizable child components.

interface ResizableChildOptions {
    mainSize: number;
    isWideScreen: boolean;
    style?: StyleProp<ViewStyle>;
}

Properties

mainSize: number

The percentage size of the main component.

isWideScreen: boolean

Flag indicating if the screen is wide.

style?: StyleProp<ViewStyle>

Optional additional styles for the child component.