The latter is preferred as it's one view with an inter modifier applied to it.
The first example, the one with if/else branches, has two separate views (with different entities, one for each branch).
Moreover, if the view DogTreatView in the first example also had its own state (via @State or @StateObject), then this state would reset every time you switch branches (a.k.a. the isExpired condition changes).
Meanwhile, in the second example, the state would persist whenever isExpired changes, as in that case, the view is the same, just with a different opacity value
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: