You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched for existing issues that already report this problem, without success.
Ionic Framework Version
v8.x
Current Behavior
Currently I have an implementation of the modals where we use card modals in our iOS app. For accessibility reasons, we've recently enabled landscape mode for our app. Since card modals are very small in landscape mode, I want to only include the presentingElement on the modal when the screen is in portrait mode. I am doing this by setting a presentingElement state variable to null, which in turn sets the presentingElement property on undefined in the inline modal. That last part is only necessary since presentingElement only accepts an HTML element or undefined and not null.
When the modal is opened, it regularly opens like a card modal as expected. When you turn your device, the modal changes into a full screen "regular" modal. When you close the full screen modal, however, the page behind it (which was used as the presentingElement) is still "boxed" in because of the remnants of the card modal animation in the background. This can only be reversed by opening the modal as a card modal again and closing it. The result looks like this:
While I expect the page to look like this:
Expected Behavior
I would expect the page behind it to return to its regular state when the presentingElement is no longer set on the inline modal and the page to return to the full width/length of the device.
The flipping of modals from card modals to full screen modals is a pattern that can be observed in more iOS apps, so should not be very niche. Whatsapp for instance behaves this way in every "New" dialog (such as creating a new chat), when opening the new chat card modal and flipping your device, it will turn into a full screen modal.
Steps to Reproduce
Clone the repo, install the dependencies and open the simulator (or connect your own device and deploy it on there)
In Portrait mode, click the blue OPEN MODAL button.
See the card modal open
Now flip your device to landscape mode (any side is fine)
See the full screen modal replace the card modal
Now close the modal using the blue "CLOSE MODAL" button
See the bugged screen behind it
To revert it back, do the following:
Flip your phone back to portrait mode (upside down is turned off, so only "regular" portrait works)
Notice that the page is still looking bugged (!!!)
cordova-res : not installed globally
native-run : 2.0.1
System:
NodeJS : v22.14.0
npm : 10.9.2
OS : macOS Unknown
Additional Information
Since the buggy screen still appears when the modal is closed & the phone is flipped and it's fixed when the modal is opened and closed, it seems that it's related to something not reverting the presentingElement when the dismiss is not called on the modal while the presentingElement is still there.
Hopefully a fix can be implemented that allows us to keep the modal open, as seen on other applications like the one I mentioned in the expected behaviour section.
The text was updated successfully, but these errors were encountered:
Prerequisites
Ionic Framework Version
v8.x
Current Behavior
Currently I have an implementation of the modals where we use card modals in our iOS app. For accessibility reasons, we've recently enabled landscape mode for our app. Since card modals are very small in landscape mode, I want to only include the presentingElement on the modal when the screen is in portrait mode. I am doing this by setting a presentingElement state variable to null, which in turn sets the presentingElement property on undefined in the inline modal. That last part is only necessary since presentingElement only accepts an HTML element or undefined and not null.
When the modal is opened, it regularly opens like a card modal as expected. When you turn your device, the modal changes into a full screen "regular" modal. When you close the full screen modal, however, the page behind it (which was used as the presentingElement) is still "boxed" in because of the remnants of the card modal animation in the background. This can only be reversed by opening the modal as a card modal again and closing it. The result looks like this:
While I expect the page to look like this:
Expected Behavior
I would expect the page behind it to return to its regular state when the presentingElement is no longer set on the inline modal and the page to return to the full width/length of the device.
The flipping of modals from card modals to full screen modals is a pattern that can be observed in more iOS apps, so should not be very niche. Whatsapp for instance behaves this way in every "New" dialog (such as creating a new chat), when opening the new chat card modal and flipping your device, it will turn into a full screen modal.
Steps to Reproduce
To revert it back, do the following:
Code Reproduction URL
https://github.com/ijsje71/bug-switching-card-modal-and-regular-modal#
Ionic Info
Ionic:
Ionic CLI : 7.2.0 (/usr/local/lib/node_modules/@ionic/cli)
Ionic Framework : @ionic/react 8.5.1
Capacitor:
Capacitor CLI : 7.1.0
@capacitor/android : not installed
@capacitor/core : 7.1.0
@capacitor/ios : 7.1.0
Utility:
cordova-res : not installed globally
native-run : 2.0.1
System:
NodeJS : v22.14.0
npm : 10.9.2
OS : macOS Unknown
Additional Information
Since the buggy screen still appears when the modal is closed & the phone is flipped and it's fixed when the modal is opened and closed, it seems that it's related to something not reverting the presentingElement when the dismiss is not called on the modal while the presentingElement is still there.
Hopefully a fix can be implemented that allows us to keep the modal open, as seen on other applications like the one I mentioned in the expected behaviour section.
The text was updated successfully, but these errors were encountered: