9

我正在将 xCode 11 beta 7 与 SwiftUI 一起使用。

我有一个简单的列表,每个列表元素都有几个按钮。当前,当用户按下单元格(而不是按钮)时,它会突出显示列表单元格的背面(可能不是 SwiftUI 的正确术语)。

我如何禁用此行为?我找不到明显的 api 来禁用它。

List {
    HStack {
        Group {
            Button(action: {}) {
                Text("Read").padding(5)
            }.onTapGesture {
                print("1")                    
            }
            .padding()
            .background(Color.blue)
            .cornerRadius(5)
        }
        Group {
            Button(action: {}) {
                Text("Notify").padding(5)
            }.onTapGesture {
                print("2") 
            }
            .padding()
            .background(Color.purple)
            .cornerRadius(5)
        }
        Group {
            Button(action: {}) {
                Text("Write").padding(5)
            }.onTapGesture {
                print("3")
            }
            .padding()
            .background(Color.yellow)
            .cornerRadius(5)
        }
    }
}
4

3 回答 3

26

与如何在使用 SwiftUI 的列表中删除高亮显示的答案相同?

我知道我有点晚了,但这是给那些正在寻找的人(比如我)

我发现了什么

我想你应该看看短文How to disable the overlay color for images inside Button and NavigationLink from @TwoStraws

只需将.buttonStyle(PlainButtonStyle())修饰符添加到您的项目中List,您就会拥有您想要的。这也使得 s 中的Buttons 再次工作List,这是我遇到的另一个问题。

Swift 5.1的一个工作示例:

import Combine
import SwiftUI

struct YourItem: Identifiable {
    let id = UUID()
    let text: String
}

class YourDataSource: ObservableObject {
    let willChange = PassthroughSubject<Void, Never>()
    var items = [YourItem]()

    init() {
        items = [
            YourItem(text: "Some text"),
            YourItem(text: "Some other text")
        ]
    }
}

struct YourItemView: View {
    var item: YourItem

    var body: some View {
        VStack(alignment: .leading) {
            Text(item.text)
            HStack {
                Button(action: {
                    print("Like")
                }) {
                    Image(systemName: "heart.fill")
                }
                Button(action: {
                    print("Star")
                }) {
                    Image(systemName: "star.fill")
                }
            }
        }
        .buttonStyle(PlainButtonStyle())
    }
}

struct YourListView: View {
    @ObservedObject var dataSource = YourDataSource()

    var body: some View {
        List(dataSource.items) { item in
            YourItemView(item: item)
        }
        .navigationBarTitle("List example", displayMode: .inline)
        .edgesIgnoringSafeArea(.bottom)
    }
}

#if DEBUG
struct YourListView_Previews: PreviewProvider {
    static var previews: some View {
        YourListView()
    }
}
#endif

正如文章中所说,它也适用于NavigationLinks。我希望它对你们中的一些人有所帮助

于 2019-10-13T22:54:23.880 回答
5

这是对我有用的最简单的解决方案(瞧,我正在用 Swift 和 SwiftUI 构建我的第一个应用程序,这是我在 SO 上的第一篇文章):

无论您有按钮,添加 .buttonStyle(BorderlessButtonStyle())

Button(action:{}){
Text("Hello")
}.buttonStyle(BorderlessButtonStyle())

然后在您的列表中添加 .onTapGesture {return}

List{
Text("Hello")
}.onTapGesture {return}
于 2020-04-19T15:15:32.427 回答
0

不要使用按钮,而是用手势尝试

Group {
    Text("Notify").padding(5).gesture(TapGesture().onEnded() {
            print("action2")
            })
        .padding()
        .background(Color.purple)
        .cornerRadius(5)
    }
于 2019-09-03T14:45:36.113 回答