diff --git a/src/SharpIDE.Photino/Layout/MainLayout.razor b/src/SharpIDE.Photino/Layout/MainLayout.razor index 59736d9..4f7bcd1 100644 --- a/src/SharpIDE.Photino/Layout/MainLayout.razor +++ b/src/SharpIDE.Photino/Layout/MainLayout.razor @@ -16,9 +16,14 @@ Restore - - - + + + + + + + + @if (_solutionFilePath is not null) @@ -35,17 +40,25 @@ } - + + Terminal + + @code { bool _drawerOpen = true; + bool _terminalDrawerOpen = false; void DrawerToggle() { _drawerOpen = !_drawerOpen; } + void TerminalDrawerToggle() + { + _terminalDrawerOpen = !_terminalDrawerOpen; + } private string? _solutionFilePath; private SharpIdeSolutionModel? _solutionModel;