I’m using the ui-modal max variant for a full screen section in my embedded app per the latest App Bridge guidelines. Since the full screen components require complex React functionality I’m using the src attribute to display the contents as an iframe within the modal (which is recommended by the docs). Everything works fine on most platforms, except the modal iframe contents don’t render when viewed via the iOS app. I’m wondering if anyone else has experienced this issue and if there’s a known solution?
Here’s a basic an example of how the modal code is implemented:
<ui-modal id="my-modal" variant="max" src="https://...">
<TitleBar title="Modal Title">
</TitleBar>
</ui-modal>