1

对于 macOS 应用程序,我喜欢使用 SwiftUI 在其父视图中扩展按钮的宽度。我试过这个:导入 SwiftUI

struct ContentView: View {
    var body: some View {
        VStack {
            Button(action: {print("TEST")}) {
                Image(systemName: "clock")
                    .frame(width: 25, height: 25, alignment: .center)
                Text("This is a button")
                    .frame(minWidth: 200, idealWidth: 200, maxWidth: .infinity, minHeight: 25, idealHeight: 25, maxHeight: 25, alignment: .leading)
                Image(systemName: "chevron.left")
                    .frame(width: 25, height: 25, alignment: .center)
            }
            .buttonStyle(PlainButtonStyle())
        }
    }
}

它会产生一个看起来很像我正在搜索的结果,但是如果您单击以下应用程序屏幕截图中标记为红色的区域

在此处输入图像描述

按钮操作不会触发。第一个图像和文本之间的区域也不会触发动作。我还尝试实现自定义 ButtonStyle 但没有运气。如何实现在父视图的整个宽度上延伸的按钮?

4

1 回答 1

2

您可以尝试使用.contentShape(Rectangle())

Button(action: { print("TEST") }) {
    HStack {
        // ...
    }
    .frame(maxWidth: .infinity)
    .contentShape(Rectangle())
}
于 2021-01-13T21:07:02.620 回答