@State @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *) @frozen @propertyWrapper public struct State : DynamicProperty { public init(wrappedValue value: Value) public init(initialValue value: Value) public var wrappedValue: Value { get nonmutating set } public var projectedValue: Binding { get } } var 로 선언되어야함. private 으로 사용하는것 권고. (single source of truth) SwiftUI 는 State 로 선언된 모든 프로..