MAUI Popup at first start
Hi everyone,
I created a MAUI app for windows (later mac), I would like to show a GCU popup at the first launch of the app. I tried to use the
OnAppearing()
of my Home page, but since it's not an async method, it doesn't wait for my popup. The popup only show if I go to another page and then go back to the home page 😦
Do you guys have any Idea on how to do this please?1 Reply
Since OnAppearing is kind of an Event Handler of sorts, you can probably get away with making it an
async void
method. Generally, you wouldn't want to do that unless it is an event handler method. In this context you probably could to navigate.