add border left to VStack – Ios swift
I have a SwiftUI View that looks like the following: import SwiftUI struct ContentView: View { var body: some View { HStack(alignment: .top) { VStack(alignment: .leading) { HStack { Image(systemName: "star.fill") .aspectRatio(contentMode: .fit) .frame(width: 16, height: 16) Text("Speed") }.padding(.bottom, 10)…