PlaceDetailsCompactView
struct PlaceDetailsCompactView
extension PlaceDetailsCompactView : Sendable, View
-
Declaration
Swift
var $query: Binding<PlaceDetailsQuery> { get }
-
The type of view representing the body of this view.
When you create a custom view, Swift infers this type from your implementation of the required
View/body-swift.property
property.Declaration
Swift
typealias Body = some View
-
The body of the place details compact view.
Declaration
Swift
var body: some View { get }
-
The configuration of the place details compact view.
Declaration
Swift
var configuration: PlaceDetailsCompactConfiguration
-
Initializer for the place details compact view.
Declaration
Swift
init(orientation: PlaceDetailsViewOrientation = .vertical, query: Binding<PlaceDetailsQuery>, configuration: PlaceDetailsCompactConfiguration, placeDetailsCallback: @escaping (PlaceDetailsResult) -> Void)
Parameters
orientation
The orientation of the place details view.
query
The place details widget query.
-
The orientation of the place details view.
Declaration
Swift
var orientation: PlaceDetailsViewOrientation
-
The place details widget query.
Declaration
Swift
var query: PlaceDetailsQuery { get nonmutating set }