Using Identifiable in SwiftUI
In this blog post I will explain Identifiable and ObjectIdentifierbased on the example of using SwiftUI's List.
Typically you create lists dynamically from an underlying collection of data.
struct Ocean {
let name: String
}
struct ContentView: V...
blog.eidinger.info3 min read