Имя изображения системного значка: chevron.left.circle.fill (с цветом заливки) и chevron.left.circle (без цвета заливки)
По умолчанию цвет заливки черный, которые вы можете изменить, используя опцию цвета переднего плана.
import SwiftUI
struct ContentView: View {
var body: some View {
List {
Image(systemName: "chevron.left.circle.fill")
.resizable()
.frame(width: 50, height: 50, alignment: .center)
.listRowBackground(Color.green)
Text("")
Image(systemName: "chevron.left.circle")
.resizable()
.frame(width: 50, height: 50, alignment: .center)
.listRowBackground(Color.green)
}
.foregroundColor(.white)
}
}
![enter image description here](https://i.stack.imgur.com/AgdHV.png)