This commit is contained in:
Matt Parker
2025-08-06 19:26:01 +10:00
parent 4aae23c6f8
commit f01c3ccefa

View File

@@ -42,9 +42,15 @@
</MudAppBar> </MudAppBar>
<MudMainContent Style="height: 100%"> <MudMainContent Style="height: 100%">
<MudPaper Height="100%" Class="" Style="overflow:hidden; position:relative;"> <MudStack Style="height: 100%" Row="true" Spacing="0" StretchItems="StretchItems.Middle">
<MudStack>
<MudToggleIconButton Icon="@Icons.Material.Filled.PlayArrow"/>
<MudToggleIconButton Icon="@Icons.Material.Filled.PlayArrow"/>
<MudToggleIconButton Icon="@Icons.Material.Filled.Terminal"/>
</MudStack>
<MudPaper Height="100%" Style="overflow:hidden; position:relative;">
<MudDrawerContainer Style="height: 100%" Class="mud-height-full"> <MudDrawerContainer Style="height: 100%" Class="mud-height-full">
<MudDrawer @bind-Open="@_drawerOpen" Style="height: 100%" Width="400px" Fixed="false" Elevation="0" Variant="@DrawerVariant.Persistent"> <MudDrawer @bind-Open="@_drawerOpen" Style="height: 100%" Width="400px" Fixed="false" Variant="@DrawerVariant.Persistent">
@if (_solutionFilePath is not null) @if (_solutionFilePath is not null)
{ {
<SolutionExplorer @bind-SelectedFile="@_selectedFile" SolutionModel="@_solutionModel"/> <SolutionExplorer @bind-SelectedFile="@_selectedFile" SolutionModel="@_solutionModel"/>
@@ -61,6 +67,8 @@
</div> </div>
</MudDrawerContainer> </MudDrawerContainer>
</MudPaper> </MudPaper>
<div>@* fake for StretchItems.Middle *@</div>
</MudStack>
</MudMainContent> </MudMainContent>
<MudDrawer @bind-Open="@_terminalDrawerOpen" Elevation="2" Variant="DrawerVariant.Temporary" Overlay="false" Anchor="Anchor.Bottom"> <MudDrawer @bind-Open="@_terminalDrawerOpen" Elevation="2" Variant="DrawerVariant.Temporary" Overlay="false" Anchor="Anchor.Bottom">
@if (_solutionFilePath is not null) @if (_solutionFilePath is not null)