previewInterfaceOrientation(_:)
Overrides the orientation of the preview.
Declaration
nonisolated func previewInterfaceOrientation(_ value: InterfaceOrientation) -> some View
Parameters
- value:
An orientation to use for preview.
Return Value
A preview that uses the given orientation.
Discussion
By default, device previews appear right side up, using orientation portrait. You can change the orientation of a preview using one of the values in the InterfaceOrientation structure:
struct CircleImage_Previews: PreviewProvider {
static var previews: some View {
CircleImage()
.previewInterfaceOrientation(.landscapeRight)
}
}