Interface CenteredControlBarProps

interface CenteredControlBarProps {
    left?: ReactNode;
    middle?: ReactNode;
    right?: ReactNode;
    style?: StyleProp<ViewStyle>;
}

Properties

left?: ReactNode

The component that will be placed in the left slot.

middle?: ReactNode

The component that will be placed in the middle slot.

right?: ReactNode

The component that will be placed in the right slot.

The style overrides for the control bar.

Generated using TypeDoc