更改SwiftUI Popover高度

时间:2019-10-27 20:57:50

标签: swift swiftui

是否可以在iPad上的SwiftUI上更改弹出窗口的高度?在弹出视图内设置框架的高度无效。

我的代码如下所示:

struct Test: View {
    var body: some View {
        List {
            Button(action: {
                // Enable popOver
            }) {
                Text("click me")
            }
        }.popover(isPresented: $showingPopOver, arrowEdge: .top) {
            VStack(spacing: 20) {
                Text("Change Picture")
                    .onTapGesture {
                        self.showingPopOver.toggle()
                        self.imagePickerViewModel.isPresented.toggle()
                    }

                Text("Remove")
            }.frame(height: 200).background(Color.red)
        }
    }
}

0 个答案:

没有答案