Type Alias CustomerSheetPresentParams

CustomerSheetPresentParams: {
    presentationStyle?:
        | "fullscreen"
        | "popover"
        | "pageSheet"
        | "formSheet"
        | "automatic"
        | "overFullScreen";
    animationStyle?: "flip"
    | "curl"
    | "slide"
    | "dissolve";
    timeout?: number;
}

Type declaration

  • OptionalpresentationStyle?:
        | "fullscreen"
        | "popover"
        | "pageSheet"
        | "formSheet"
        | "automatic"
        | "overFullScreen"

    Controls how the modal is presented (after animation). iOS only. Defaults to popover. See https://developer.apple.com/documentation/uikit/uimodalpresentationstyle for more info.

  • OptionalanimationStyle?: "flip" | "curl" | "slide" | "dissolve"

    Controls how the modal animates. iOS only.

  • Optionaltimeout?: number

    Time (in milliseconds) before the Customer Sheet will automatically dismiss.

MMNEPVFCICPMFPCPTTAAATR