You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reproduce:
1.open 2 new windows
2.invoke var result = await DialogService.DisplayCheckBoxPromptAsync("Title", new []{ "Option 1", "Option 2", "Option 3"}); on the second window
3.the Popup will show on the first window
The text was updated successfully, but these errors were encountered:
in the latest 2.8.0-pre version, UraniumUI implemented different logic for IDialogService, so if you don't use any adapter like Mopups or CommunityToolkit, it'll use the current page to display dialogs and renders it itself instead real native popup.
In this way, it'll not be a platform native dialog but it serves its purpose
like CommunityToolkit/Maui#1616
reproduce:
1.open 2 new windows
2.invoke
var result = await DialogService.DisplayCheckBoxPromptAsync("Title", new []{ "Option 1", "Option 2", "Option 3"});
on the second window3.the Popup will show on the first window
The text was updated successfully, but these errors were encountered: