interface FullscreenProps {
    icon?: {
        enter: ReactNode;
        exit: ReactNode;
    };
    style?: StyleProp<ViewStyle>;
    testID?: string;
}

Hierarchy

  • ButtonBaseProps
    • FullscreenProps

Properties

Properties

icon?: {
    enter: ReactNode;
    exit: ReactNode;
}

The icon components used in the button.

Type declaration

  • enter: ReactNode
  • exit: ReactNode

The style overrides for the button.

testID?: string

An id used to locate this view in end-to-end tests.