Apple released another shocker of a #SwiftUI sample: Wishlist: Planning travel in a SwiftUI app
https://developer.apple.com/documentation/swiftui/wishlist-planning-travel-in-a-swiftui-app
- uses var instead of let in immutable View structs.
- Uses non-standard State(initialValue:) instead of @.Binding.
- Uses @Observable class with @.State instead of struct for view data (TripEditModel and another named just Model in AddTripView).
- @Environment with @Observable instead of @Entry for a struct (maybe ok)
- Identifiable class Activity implements an id as UUID.
