How to make translucent SwiftUI List in macOS

Issue #615

1
2
3
4
5
6
List {
ForEach(books) { (book: Book) in
BookRow(book: book)
}
}
.listStyle(SidebarListStyle())

Comments