-
-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The back button still enable when LoadingDialog is showing #32
Comments
How was this solved?? |
Hi, please update to the latest version. And instead of calling |
Thanks...Question is there a way to change the activity indicator color within the loading dialog?? |
Yes, look for the overload method that takes the parameter of the type var loading = await MaterialDialog.Instance.LoadingDialogAsync("Please wait...", new XF.Material.Forms.UI.Dialogs.Configurations.MaterialLoadingDialogConfiguration
{
TintColor = Color.Red
}); |
I am going to test the |
For now the loading dialog cannot by dismissed by pressing the back button on Android. If you used it in a |
Okay no problem. |
I use new version 1.3.0.3,but the problem is same, I use this code:
|
Hi, did you override the public override void OnBackPressed()
{
XF.Material.Droid.Material.HandleBackButton(base.OnBackPressed);
} |
No,so I need to override it? |
I override it,it works fine,thank you! |
Describe the bug
When the LoadingDialog is showing the back button press will go to last page.
To Reproduce
Steps to reproduce the behavior:
Here‘s two page :
When the loadingdialog is showing,I press back button on android,it back to MainPage, but the loadingdialog still showing,after 5s loadingdialog hide.
The text was updated successfully, but these errors were encountered: