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
I assume the listRowPlatterColor modifier should do this, but isn't as of Xcode 11 Beta 11M336w
var body: some View { List(pokemon) { pokemon in PokemonCell(pokemon: pokemon) .listRowPlatterColor(.green) } }