9
Tại sao ứng dụng SwiftUI của tôi gặp sự cố khi điều hướng lùi sau khi đặt `NavigationLink` bên trong` navigationBarItems` trong `NavigationView`?
Ví dụ tái tạo tối thiểu (Xcode 11.2 beta, điều này hoạt động trong Xcode 11.1): struct Parent: View { var body: some View { NavigationView { Text("Hello World") .navigationBarItems( trailing: NavigationLink(destination: Child(), label: { Text("Next") }) ) } } } struct Child: View { @Environment(\.presentationMode) var presentation var body: …