Type Alias CustomerSheetPresentParams
CustomerSheetPresentParams: {
presentationStyle?:
| "fullscreen"
| "popover"
| "pageSheet"
| "formSheet"
| "automatic"
| "overFullScreen";
animationStyle?: "flip"
| "curl"
| "slide"
| "dissolve";
timeout?: number;
}
Type declaration
Optional
presentationStyle?:
| "fullscreen"
| "popover"
| "pageSheet"
| "formSheet"
| "automatic"
| "overFullScreen"
Optional
animationStyle?: "flip" | "curl" | "slide" | "dissolve"
Optional
timeout?: number
Controls how the modal is presented (after animation). iOS only. Defaults to
popover
. See https://developer.apple.com/documentation/uikit/uimodalpresentationstyle for more info.