Post

Replies

Boosts

Views

Activity

Reply to Fullscreen Cover and Sheet Bug ? XCode 15 / iOS 17
I also have this issue. I did discover that if you put empty .onChange before the sheet, it works. Button(action: { planActivitySheetVisible.toggle() }, label: { Image(systemName: "plus") }) // I need this for some reason to make the sheet present consistently .onChange(of: planActivitySheetVisible) { } .sheet(isPresented: $planActivitySheetVisible) { PlanActivityView( ) }
Jan ’24