How to use the @State property wrapper in SwiftUI
Types in Swift fall into one or two categories (value types and reference types). Value types are where each instance keeps a unique copy of its data, usually defined as a struct, enum or tuple. In SwiftUI we use structs for our views and since structs are value types we cannot modify the values inside… Read More How to use the @State property wrapper in SwiftUI