Implentata scansione barcode e lista articoli nel form scheda
This commit is contained in:
13
SteUp.Shared/Components/Layout/Spinner/LoaderLayout.razor
Normal file
13
SteUp.Shared/Components/Layout/Spinner/LoaderLayout.razor
Normal file
@@ -0,0 +1,13 @@
|
||||
<MudOverlay Visible="Visible" DarkBackground="false">
|
||||
<div class="overlay-container">
|
||||
<span>@(Text ?? "Caricamento")</span>
|
||||
|
||||
<MudProgressLinear Color="Color.Primary" Rounded="true" Size="Size.Medium" Indeterminate="true" />
|
||||
</div>
|
||||
</MudOverlay>
|
||||
|
||||
@code
|
||||
{
|
||||
[Parameter] public bool Visible { get; set; }
|
||||
[Parameter] public string? Text { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user