11

我正在使用 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
        }
    }
}

它看起来像这样。垃圾。

在此处输入图像描述

如果我把它.fixedSize()放在分隔器上,它会这样做。并不可怕,但分隔线看起来很愚蠢,并且不会扩展到按钮的大小。

在此处输入图像描述

4

3 回答 3

13

这是一个可能的简化替代的演示,没有人为扩展。使用 Xcode 11.4 / iOS 13.4 测试。

演示

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)

注意:还值得考虑自定义分隔线,例如

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

比可能提供更合适的视觉反馈,比如

演示2

于 2020-04-08T06:57:57.340 回答
6

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)
    }

结果:

在此处输入图像描述

于 2020-04-08T06:07:17.610 回答
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)
        }
    }
}

输出 :

在此处输入图像描述

于 2020-04-08T08:08:06.210 回答