SheetPresentationOptions
public struct SheetPresentationOptions
An options model used in conjunction with SheetPresentationType
to customize UIKit and SwiftUI modal sheet presentations.
-
Options which configure a UIKit sheet presentation.
Declaration
Swift
public var uiKit: ControllerSheetPresentationOptions?
-
Options which configure a SwiftUI sheet presentation.
Declaration
Swift
public var swiftUI: ViewSheetPresentationOptions?
-
An initializer for UIKit sheets.
Declaration
Swift
public init(uiKit: ControllerSheetPresentationOptions? = nil)
Parameters
uiKit
Options which configure a UIKit sheet presentation.
-
An initializer for SwiftUI sheets.
Declaration
Swift
public init(swiftUI: ViewSheetPresentationOptions? = nil)
Parameters
swiftUI
Options which configure a SwiftUI sheet presentation.