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
For the List background use .colorMultiply(Color.yourColor) modifier
.colorMultiply(Color.yourColor)
Example:
List (elements, id:\.self ) { element in Text(element) } .colorMultiply(Color.red) <--------- replace with your color