Thanks for being a part of WWDC25!

How did we do? We’d love to know your thoughts on this year’s conference. Take the survey here

FamilyActivityPicker will have a problem closing the parent element fullScreenCover in the 18.4 official version

.fullScreenCover(isPresented: $isShow) {
  Button(action : {
     isPresented.toggle()
  }){
     Text("Choose")
  }
 .familyActivityPicker(
        isPresented: $isPresented,
       selection: $selection)
  .onChange(of: selection){ value in
  }
}

In the official version of iOS 18, when I click the Done button of familyActivityPicker, the fullScreenCover pop-up box will disappear.

We observed the same behavior with iOS 18.4, it's also impacting modally presented UIKit UIHostingController presenting a FamilyAcitivityPicker, they are dismissed alongside the FamilyPicker.

Hey, any update on this? We're facing the same issue in iOS 18.4. Unable to reproduce in 18.3 or lower.

FamilyActivityPicker will have a problem closing the parent element fullScreenCover in the 18.4 official version
 
 
Q