SwiftUI阻止Divider在HStack中垂直扩展

时间:2020-04-08 05:36:48

标签: swiftui hstack

我正在使用SwiftUI创建类似警报弹出窗口的内容,我使用UIHostingController从UIKit代码中呈现了该内容。该视图如下所示:

VStack(spacing: 0) {
    // Some text ...   

    HStack(spacing:0) {
        Button(action: self.onCancel) { Text("Cancel") }
           .padding().inExpandingRectangle().fixedSize(horizontal: false, vertical: true)

        // This divider is the problem
        Divider() // .fixedSize()

        Button(action: self.onDelete) {  Text("Delete") }
           .padding().inExpandingRectangle().fixedSize(horizontal: false, vertical: true)
    }
}.frame(minHeight: 0)

inExpandingRectangle是我在另一个stackoverflow问题中发现的。它将文本放在HStack的每一面。

extension View {
    func inExpandingRectangle() -> some View {
        ZStack {
            Rectangle().fill(Color.clear)
            self
        }
    }
}

看起来像这样。垃圾。

enter image description here

如果我将.fixedSize()放在分隔符上,它将执行此操作。并不可怕,但是分隔符看起来很愚蠢,不会扩展到按钮的大小。

enter image description here

3 个答案:

答案 0 :(得分:4)

这里是一个可能的简化替代示例,没有该 artificial 扩展名。在Xcode 11.4 / iOS 13.4上进行了测试。

demo

Divider() // or Rectangle().fill(Color.gray).frame(height: 1)
HStack {
    Button(action: {}) { Text("Cancel").fixedSize() }
        .padding().frame(maxWidth: .infinity)

    Divider() // or Rectangle().fill(Color.gray).frame(width: 1)

    Button(action: {}) {  Text("Delete").fixedSize() }
        .padding().frame(maxWidth: .infinity)

}.fixedSize(horizontal: false, vertical: true)

注意:还值得考虑使用 custom 分隔线,例如

Rectangle().fill(Color.gray).frame(width: 1) // or any other color

可能会给出很多适当的视觉反馈,例如

demo2

答案 1 :(得分:3)

fixedSize()上放置HStack修饰符而不是Divider可以解决此问题。

    var body : some View {
        VStack(spacing: 0) {
            // Some text ...
            Text("gsfdsfkajflkasdjflkas,jdflaskjf")
            HStack(spacing:0) {
                Button(action: {print("hi")}) { Text("Cancel") }
                    .padding().inExpandingRectangle().fixedSize(horizontal: true, vertical: true)

                // This divider is the problem
                Divider()


                Button(action: {print("hello")}) {  Text("Delete") }
                    .padding().inExpandingRectangle().fixedSize(horizontal: true, vertical: true)
            }.fixedSize()        <------- Insert this
        }.frame(minHeight: 0)
    }

结果:

enter image description here

答案 2 :(得分:0)

您可以尝试以下代码,希望它对您有所帮助(Xcode 11.2.1)

注意:根据您的要求更改FontFrameColor

var body: some View {

    VStack(spacing: 0) {

        Text("Delete")
            .font(Font.system(size: 20, weight: .bold))

        Text("Are you sure you want to delete ?")
            .font(Font.system(size: 18, weight: .regular))
            .padding([.top,.bottom], 15)

        Rectangle().fill(Color.gray.opacity(0.5)).frame(height:0.5)

        HStack(spacing:0) {

            Button(action: {
                //Your action
            }) {
                Text("Cancel")
                    .foregroundColor(Color.black)
                    .font(Font.system(size: 18, weight: .medium))
            }
            .frame(minWidth: 150, maxWidth: .infinity, minHeight: 40, maxHeight: 40, alignment: .center)

            Rectangle().fill(Color.gray.opacity(0.5)).frame(width:0.5,height:20)

            Button(action: {
                //Your action
            }) {
                Text("Delete")
                    .font(Font.system(size: 18, weight: .medium))
                    .foregroundColor(Color.red)
            }
            .frame(minWidth: 150, maxWidth: .infinity, minHeight: 40, maxHeight: 40, alignment: .center)
        }
    }
}

输出:

enter image description here