Set up navigationCreate the detail viewAdd visual components to the detail viewIterate through attendeesNavigate between screensimport SwiftUIstruct ScrumsView: View { let scrums: [DailyScrum] var body: some View { // Identifiable protocol, you can simplify the List initializer. // List(scrums) { scrum in // CardView(scrum: scrum) // ..