[TUI] Implement GoToPath dialog for navigating to specified directory

This commit is contained in:
2025-10-16 20:32:46 +01:00
parent 66368c1b2f
commit 9b1c3cec91
5 changed files with 163 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using Iciclecreek.Avalonia.WindowManager;
namespace Aaru.Tui.Views.Dialogs;
public partial class GoToPathDialog : ManagedWindow
{
public GoToPathDialog()
{
InitializeComponent();
}
}