While browsing through GitHub, I stumbled over the following project;
This is a toolkit library that helps you build cross-platform GUI console apps. It contains a large list of controls for building text user interfaces and even let you use a reactive programming style through support for reactive extensions.
I created a small example that allows you to scroll through all files in the current directory.
- Create a new console application:
dotnet new console
- Add the Terminal.Gui NuGet package:
dotnet add package terminal.gui
- Add your code:
- Run the console app:
dotnet run