UI becomes not responsive after the dialog is closed ( iOS )
See original GitHub issueI am calling it with :
public static void simplePopup( string message )
{
onConfirmClicked = null;
messageText = message;
captionText = "test";
if( dialogInstance == null )
{
try
{
dialogInstance = new SimpleDialog();
}
catch( Exception ex )
{
}
}
try
{
( App.instance.MainPage as ExtendedNavigationPage ).Navigation.PushPopupAsync( dialogInstance );
}
catch( Exception ex )
{
}
}
and I am closing it from a “OK” button within the class with the follow code:
private void onButtonConfirmationClicked( object sender, EventArgs e )
{
try
{
if( onConfirmClicked != null )
onConfirmClicked();
}
catch( Exception ex )
{
}
try
{
//( App.instance.MainPage as ExtendedNavigationPage ).Navigation.PopAllPopupAsync();
( App.instance.MainPage as ExtendedNavigationPage ).Navigation.RemovePopupPageAsync( dialogInstance );
}
catch( Exception ex )
{
}
}
anyway - once the dialog is closed the page which is on top of the modal stack becomes with not responsive UI.
Issue Analytics
- State:
- Created 6 years ago
- Comments:13 (6 by maintainers)
Top Results From Across the Web
Mac OS Big Sur - Dialog box not responding to mouse clicks
When I open dialog window, it freezes. Can't click anywhere on dialog, even Cancel button. When I resize a little bit it become...
Read more >Angular 8 P-dialog - ipad - responsiveness issue
But when we go to ipad view, dialog maximize and close button seems unreachable. Below is p-dialog with [responsive]="true" added already. What ...
Read more >Portions of VS become unresponsive for several seconds.
This started happening after a few weeks of using VS. This issue is sporadic and I'm unable to detect any pattersns to reproduce....
Read more >"Visual Studio is busy" - unresponsive for 30 MINUTES
It would appear there is something very, very wrong with how you're retrieving credentials (i.e. no sane timeout and completely blocking the UI...
Read more >Bootstrap Modal Dialog showing under Modal Background
The easiest solution is to move the modal dialog outside of any container and just declare it under the <body> element, or -...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@YordanYanakiev Update to 2.4.0.280 or higher.
@YordanYanakiev Give me a stack trace of the exception