Post

Replies

Boosts

Views

Activity

Reply to List in SwiftUI not appearing correctly.
I found a solution. I created my View in a separate file then embedded it as a List in my main view like so: SoccerCell      HStack(alignment: .center, spacing: 15){       Image("jesse-lingard")         .resizable()         .scaledToFit()         .frame(height: 70)         .cornerRadius(8)               VStack(alignment: .leading, spacing: 5){         Text("Jesse Lingard")           .font(.system(size: 20, weight: .bold))           .lineLimit(1)         Text("Manchester United")           .foregroundColor(.secondary)           .font(.system(size: 15, weight: .regular))       }     } Main content view      List(0 ..< 5) { item in       SoccerCell()     }
Oct ’21