ViewStorage
@frozen
@propertyWrapper
public struct ViewStorage<Value> : Identifiable, DynamicProperty, @unchecked Sendable
extension ViewStorage: Equatable where Value: Equatable
extension ViewStorage: Hashable where Value: Hashable
和State类似,只是不触发UI自动刷新
-
Undocumented
See moreDeclaration
Swift
public final class ValueBox : ViewStorageValue<Value>, @unchecked Sendable
-
Declaration
Swift
public var id: ObjectIdentifier { get }
-
Undocumented
Declaration
Swift
public var wrappedValue: Value { get nonmutating set }
-
Undocumented
Declaration
Swift
public var projectedValue: ViewStorage<Value> { get }
-
Undocumented
Declaration
Swift
public var valueBox: ValueBox { get }
-
Undocumented
Declaration
Swift
public init(wrappedValue value: @autoclosure @escaping () -> Value)
-
Undocumented
Declaration
Swift
public var binding: Binding<Value> { get }
-
Undocumented
Declaration
Swift
public var publisher: Published<Value>.Publisher { get }
-
Declaration
Swift
public static func == (lhs: `Self`, rhs: `Self`) -> Bool
-
Declaration
Swift
public func hash(into hasher: inout Hasher)