ShowModal in IOS

I have an event (button pressed) on my main screen that opens another screen using ShowModal.
When the user interacts with the new screen, it sets a couple of App shared properties.

However, the event code doesn’t actually wait until this new screen is closed before resuming. Is this intended, and if so, what is the point of ShowModal?

That is how it works on Mobile.

If you have some code that should execute after the modal screen is closed, you will need to find a way to “call back” to the parent screen.

The point of ShowModal is to show a modal screen that slides up and can be closed with a swipe down.

1 Like

Here’s a post I wrote about the “call back” some time ago.

Thanks
Is there an obvious event I can use on the calling screen when the modal screen is closed?