BackgroundColor list cell SwiftUI with iOS14

How can I change the background color of the cells of a list with iOS14? The background is always black or white. No modifiers seem to work and UIKit methods like: "UITableViewCell.appearance ()" no longer work. Help! :(
Use a .listRowBackground() modifier.
Code Block
listRowBackground()

does not work for me. Still either black or white.
I see the same issue too.
UITableViewCell.appearance () does not work anymore..
listRowBackground() does not work either..
This still remains an issue
I faced same issue. Setting .listRowBackground(Color.green) on ForEarch instead of single row or whole list.
BackgroundColor list cell SwiftUI with iOS14
 
 
Q