Implemented a basic way to queue games using DownloadService. Games will download and extract without blocking UI, but more needs to be done to reflect the game in UI and database.
10 lines
325 B
Text
10 lines
325 B
Text
<div class="pane @Class" data-size="@Size">
|
|
@ChildContent
|
|
</div>
|
|
|
|
@code {
|
|
[CascadingParameter] public SplitPane Parent { get; set; }
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
[Parameter] public string Class { get; set; } = "";
|
|
[Parameter] public string Size { get; set; } = "50%";
|
|
}
|