in the example: ```swift yourView .pipify(isPresented: $isPresented) { SomeOtherView() // presents `SomeOtherView` in PIP } ``` even when isPresented is changed to false, the PIP simply stops displaying content but remains. How would I go about closing the PIP window entirely?
in the example:
yourView .pipify(isPresented: $isPresented) { SomeOtherView() // presents `SomeOtherView` in PIP }even when isPresented is changed to false, the PIP simply stops displaying content but remains.
How would I go about closing the PIP window entirely?