In SwiftUI there are multiple ways to handle state in your views. @State @State is used when your view own this variable. When the variable changes its value, SwiftUI updates the views automatically. Because of this, it makes sense to use @State for value types (i.e. strings, booleans), where