<!--
{
  "availability" : [
    "iOS: -",
    "iPadOS: -",
    "visionOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/View/volumeBaseplateVisibility(_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI4ViewPAAE25volumeBaseplateVisibilityyQrAA0F0OF"
  },
  "title" : "volumeBaseplateVisibility(_:)"
}
-->

# volumeBaseplateVisibility(_:)

Sets the visibility of the baseplate of a volume, which appears
when a user looks towards the ‘floor’ of a volume and during resize.
Both `automatic` and `visible` will show the baseplate.
`hidden` will never show it.

```
nonisolated func volumeBaseplateVisibility(_ visibility: Visibility) -> some View
```

## Discussion

The baseplate is a semi-transparent view
that appears on the ‘floor’ of a volume.

Usage:

```
WindowGroup() {
    Poker()
        .volumeBaseplateVisibility(.visible)
}
.windowStyle(.volumetric)
```

Defaults to `automatic` (visible).

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)