I have a maui xaml page. When I click a button I want to show a dialog that exists in my razor class library.
This is a mudblazor modal dialog so I need this to show as an actual modal dialog in my maui app.
How can I do that?
<buttons:SfButton x:Name="button"
Text="Button"
Clicked="OpenBlazorDialog" />