Post

Replies

Boosts

Views

Activity

Reply to Source view disappearing when interrupting a zoom navigation transition
add an id to container, this is a workaround, I'll share a final solution once I get it struct HomeLinearContent: View { let ns: Namespace.ID @ObservedObject var viewModel: HomeViewModel let showLocation: Bool @State private var refreshID = UUID() var body: some View { LazyVStack(spacing: 12) { ForEach(viewModel.places, id: \.id) { place in NavigationLink(value: place) { HomeCardHorizontalView(place: place, ns: ns, showLocation: showLocation) } .buttonStyle(.plain) } }.id(refreshID) .navigationDestination(for: Place.self) { place in PlaceDetailView(place: place) .navigationTransition(.zoom(sourceID: place, in: ns)) .onDisappear { refreshID = UUID() } } .padding(.top, 12) .background(Color.black) } }
Topic: UI Frameworks SubTopic: SwiftUI
Sep ’25
Reply to Source view disappearing when interrupting a zoom navigation transition
add an id to container, this is a workaround, I'll share a final solution once I get it struct HomeLinearContent: View { let ns: Namespace.ID @ObservedObject var viewModel: HomeViewModel let showLocation: Bool @State private var refreshID = UUID() var body: some View { LazyVStack(spacing: 12) { ForEach(viewModel.places, id: \.id) { place in NavigationLink(value: place) { HomeCardHorizontalView(place: place, ns: ns, showLocation: showLocation) } .buttonStyle(.plain) } }.id(refreshID) .navigationDestination(for: Place.self) { place in PlaceDetailView(place: place) .navigationTransition(.zoom(sourceID: place, in: ns)) .onDisappear { refreshID = UUID() } } .padding(.top, 12) .background(Color.black) } }
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Sep ’25
Reply to Source view disappearing when interrupting a zoom navigation transition
check the below workaround
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Sep ’25
Reply to Apple Developer Program Enrollment Pending after payment
Same here, I completed the enrollment on November 10th, any email confirmation, the status is still pending.
Replies
Boosts
Views
Activity
Nov ’25
Reply to Developer Program enrollment still pending after payment
@Apple Developer Support please review my order W1301504727, thanks in advance.
Replies
Boosts
Views
Activity
Nov ’25