Hi!
I am testing my app on the new Xcode 12 beta and iOS 14 beta 1.
My app contains a section where a SwiftUI List is presented modally with a simple .sheet declaration:
Within this presented list, tapping an item in the list will present further content in a new modally presented .sheet on top of the first one. These subsequent modal sheets also contain SwiftUI List objects with further content.
My issue in these new betas is that any .sheet modals presented subsequently to the first .sheet presented will not render any content in their Lists.
My lists contain buttons that toggle the Boolean that presents the .sheet content. Example:
Sometimes, dismissing and reopening the subsequent modals will make the List content pop in, but this is very unreliable.
Needless to say, all of these features worked in Xcode 11 and iOS 13.
Has anyone else experienced this in the new betas so far?
I am testing my app on the new Xcode 12 beta and iOS 14 beta 1.
My app contains a section where a SwiftUI List is presented modally with a simple .sheet declaration:
Code Block .sheet(isPresented: $showingSheet, content: {
Within this presented list, tapping an item in the list will present further content in a new modally presented .sheet on top of the first one. These subsequent modal sheets also contain SwiftUI List objects with further content.
My issue in these new betas is that any .sheet modals presented subsequently to the first .sheet presented will not render any content in their Lists.
My lists contain buttons that toggle the Boolean that presents the .sheet content. Example:
Code Block List { ForEach(selectableLeagues, id: \.self) { league in Button(action: { self.selectedDivision.append(contentsOf: league) self.showSheet.toggle()
Sometimes, dismissing and reopening the subsequent modals will make the List content pop in, but this is very unreliable.
Needless to say, all of these features worked in Xcode 11 and iOS 13.
Has anyone else experienced this in the new betas so far?