Is this a feature that is missing in SwiftUI at the moment?
I want to achieve something like below, but for SwiftUI:
cell.selectionStyle = .nonelistRowBackground change the background even if not selected.
.listRowBackground(Color.blue)
Is this a feature that is missing in SwiftUI at the moment?
I want to achieve something like below, but for SwiftUI:
cell.selectionStyle = .nonelistRowBackground change the background even if not selected.
.listRowBackground(Color.blue)
Managed this with the
.listRowBackground(Color.TheColorOfMyCurrentBackground)
was trying with Color.clear, but this triggers the system color for selections.