I\'m trying to recreate an UI I built with UIKit in SwiftUI but I\'m running into some minor issues.
I want the change the color of the List here, but n
List
List is not perfect yet.
An option would be to use it like this -> List { ForEach(elements) { }} instead of List($elements)
List { ForEach(elements) { }}
List($elements)
On my end this is what worked best up to now. Like @FontFamily said, it shouldn't break any List default behaviors like swiping.