Files
DodoSSH/src/DodoSSH.Client.App/Views/StatusBar.axaml.cs
T
jaap-jan 9a76eced14
ci / build and test (ubuntu) (pull_request) Canceled after 0s
ci / build (windows) (pull_request) Canceled after 0s
Give hosts and terminals their own screen, and the rest of the vault another
Rebuilds the client's shell from an imported design: a titlebar and nav rail
it draws itself, real multi-session tabs over the one WebView, a Ctrl+K host
search, and a vault screen that merges keys, passwords and pinned host keys
into one table. Hosts left the vault column for their own screen beside the
terminal, which is what the design asks for and turned out to be the better
split anyway.

Two screens the design shows have nothing behind them yet — file transfer
and teams — and say so plainly rather than rendering invented data; every
other gap between the design and this build is recorded in
docs/design-import-gaps.md.
2026-07-31 08:39:37 +02:00

10 lines
235 B
C#

using Avalonia.Controls;
namespace DodoSSH.Client.App.Views;
/// <summary>The strip along the bottom of the window.</summary>
internal sealed partial class StatusBar : UserControl
{
public StatusBar() => InitializeComponent();
}