iOS Swift - Navigation
You want to present a full screen modal that shows user profile details and requires a close button to dismiss. Which SwiftUI code snippet correctly implements this behavior?
fullScreenCover, not sheet.fullScreenCover does not support swipe to dismiss, a close button inside ProfileView must set showProfile = false..fullScreenCover(isPresented: $showProfile) { ProfileView() } and add a close button inside ProfileView that sets showProfile = false. -> Option D15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions