Hello:
I installed Syncfusion.Blazor.Popups version 19.2.0.62 on a Blazor Webassembly project with PWA features. I am using an SfDialog which performs as expected when running the published project in a web browser. This is the code:
<SfDialog Width="250px" ShowCloseIcon="true" IsModal="true" @bind-Visible="@Visibility">
<DialogTemplates>
<Header> Alerta</Header>
<Content> ¿Desea eliminar?</Content>
</DialogTemplates>
<DialogButtons>
<DialogButton Content="OK" IsPrimary="true" OnClick="@OnClick" />
<DialogButton Content="Cancel" OnClick="@OnCancel" />
</DialogButtons>
</SfDialog>
However, when installing the application as PWA on an Android smartphone, the dialog box appears at the bottom of the screen as HTML as soon as the page loads.
Any suggestions?
Thanks,
Hans K.