using MudBlazor; using Template.Shared.Components.Pages; namespace Template.Shared.Core.Helpers; public class ModalHelpers { public static Task OpenActivityForm(IDialogService dialog ,string? id = null) => dialog.ShowAsync( "Activity form", new DialogParameters { { x => x.Id, id} }, new DialogOptions { FullScreen = true, CloseButton = false, NoHeader = true } ); }