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
You can do it by changing UITableView's appearance.
UITableView
UITableView.appearance().backgroundColor = UIColor.clear
just put this line in Appdelegate's didFinishLaunchingWithOptions method. In replace of UIColor.clear set whatever color you want to add in background color of list.
Appdelegate
didFinishLaunchingWithOptions
UIColor.clear
list