SwiftUI iPad 上支持演示制动吗?

问题描述 投票:0回答:1

所以我的最低目标是 iOS 16,正在使用 .sheet() 和 .presentationDetents([.medium]),它在 iOS (iPhone) 上运行良好。但当我在 iPadOS 上加载它时,它总是一张全尺寸的纸,似乎忽略了演示制动装置。这是演示此行为的最小可重现代码。

import SwiftUI

struct ContentView: View {
    @State var shouldShowSheet: Bool = false
    
    var body: some View {
        VStack {
            Image(systemName: "globe")
                .imageScale(.large)
                .foregroundColor(.accentColor)
            Text("Hello, world!")
            
            Button("Show Sheet") {
                shouldShowSheet.toggle()
            }
        }
        .padding()
        .sheet(isPresented: $shouldShowSheet, content: {
            VStack {
                Text("Some content")
                Text("Some more content")
                Text("Even more content")
                
                Button("Dismiss Sheet") {
                    shouldShowSheet.toggle()
                }
            }
            .presentationDetents([.medium])
        })
    }
}

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}

下面是相同代码在 iOS 上运行和在 iPadOS 上运行的屏幕截图 enter image description here

enter image description here

我尝试使用 .fraction、.medium、.height,但它们对 iPad 表格没有任何影响。如图所示,纸张始终是全尺寸的。但在 iOS(iPhone) 上它可以按预期工作。

我希望 iPad 上的表格也能遵守演示制动装置。如何在 iPad 上获得不同尺寸的纸张?

ipad swiftui swiftui-sheet
1个回答
0
投票

您可能正在寻找 iOS 18+ 中提供的新 presentationSizing(_:) API。

它允许配置模态呈现表单的形状和尺寸。从那里,您可以在常规尺寸类窗口(例如全屏 iPad)上构建自己的制动行为。

© www.soinside.com 2019 - 2024. All rights reserved.