Link Search Menu Expand Document

EquatableView

A view type that compares itself against its previous value and prevents its child updating if its new value is the same as its old value.

@frozen
public struct EquatableView<Content: View & Equatable>: View 

Inheritance

View

Nested Type Aliases

Body

public typealias Body = Never

Initializers

init(content:)

@inlinable
  public init(content: Content) 

Properties

content

public var content: Content