-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PopUp not showing and not responding #18
Comments
Can you provide a demo project for this issue? Then I can take a deeper look on it. |
Hey @microspaze In the BLEManager.cs search for "TODO" to find the exact place where the problem is happening. Thank you ! |
You are a life saver man. Thank you very much! Have a virtual beer from me :D Can you explain this for me? This was a Xamarin project which I am migrating to Maui. In Xamarin it was working. There was a change in Maui behaviour I guess or plugin ? Then if so, there is no need to dissable or enable the main page almost anywhere in the project because it's auto handled ? And again thank you very much, I've been searching for the problem for two days.. |
Setting Popup page's parent to current main page is the same behaviour in both Xamarin and MAUI. But Maui may change something. |
I have a problem with pop-ups that no longer open. It happens from version 1.0.9 onwards. In this case, I'm still using version 1.0.8 until I check what happens or send an example for you to check. |
@andersondamasio You can upload an example project and I will try to fix the issue. |
First time the problem was a simple PopUp was just not showing and then my app becomes unresponsive ( was fixed just by updating from version 1.0.7 to 1.1.2 of the plugin ).
Then I found another popup while testing the app which opens but buttons are not responsive and the app freezes.
Neither rolling back to 1.0.7 or 1.1.2 fixes the issue.
``
if (!await new AlertPopUp("Discover failed",
$"The scanned module could not be discovered.{Environment.NewLine}{Environment.NewLine}Do you want to try again?",
"Yes", "No").ShowAsync().ConfigureAwait(false))
{
BLEAdapter.DeviceDiscovered -= onDiscover;
}
``
It is stuck on await. Will upload a video if needed.
Can someone has any idea what is happening here? Thank you !
The text was updated successfully, but these errors were encountered: