https://www.youtube.com/watch?v=vSHbMhy6XH4&list=PLwBf1nbmbSzgC5RLROL798IHwfovDhv16 import SwiftUI struct Student: Hashable{ let name : String } struct ContentView: View { let student = [Student(name: "Harry"), Student(name: "Hermion")] var body: some View { List(student, id: \.self){ student in Text(student.name) } } } struct ContentView_Previews: PreviewProvider { static var previews: some Vie..