iOS Swift - Lists and Data Display
Given the struct below, which SwiftUI code correctly displays a list of
User instances using ForEach inside a List?
struct User: Identifiable {
let id: UUID
let username: String
}
let users = [User(id: UUID(), username: "john"), User(id: UUID(), username: "jane")]
