interface PopoverOptions {
    anchor: View;
    backgroundColor?: string | Color;
    canOverlapSourceViewRect?: boolean;
    context?: any;
    fitInScreen?: boolean;
    focusable?: boolean;
    hideArrow?: boolean;
    horizPos?: HorizontalPosition;
    onDismiss?: Function;
    outsideTouchable?: boolean;
    passthroughViews?: View[];
    transparent?: boolean;
    vertPos?: VerticalPosition;
    x?: number;
    y?: number;
}

Properties

anchor: View
backgroundColor?: string | Color
canOverlapSourceViewRect?: boolean
context?: any
fitInScreen?: boolean
focusable?: boolean
hideArrow?: boolean
onDismiss?: Function
outsideTouchable?: boolean
passthroughViews?: View[]
transparent?: boolean
x?: number
y?: number