It looks incredibly nice, but ... I still think a text UI that looks like a GUI is combining the worst of two worlds.
Ftxui: C++ Functional Terminal User Interface
21–30 of 72 posts
Re: Ftxui: C++ Functional Terminal User Interface
#22It looks incredibly nice, but ... I still think a text UI that looks like a GUI is combining the worst of two worlds.
Have you ever used (h)top? It's great at-a-glance view of what's going on, from the command line.
I think that is the distinction that parent is making.
In a TUI environment (ignoring mouse support) traditional GUI elements and layouts often don’t make sense. Like one of the examples with all the radio buttons in small boxes.
The good TUI apps like htop, newsboat, mutt, vim/emacs, tmux all have mostly line-and-column oriented simple layout primitives.
Re: Ftxui: C++ Functional Terminal User Interface
#23Earlier quoted context omitted.
That is basically what Flutter is. Renders to desktop, mobile and web, only tui is missing there.
I thought flutter web uses wasm/canvas and not html am I wrong ?
Re: Ftxui: C++ Functional Terminal User Interface
#24It looks incredibly nice, but ... I still think a text UI that looks like a GUI is combining the worst of two worlds.
Have you ever used (h)top? It's great at-a-glance view of what's going on, from the command line.
Re: Ftxui: C++ Functional Terminal User Interface
#25Great project. One of its user git-tui looks well comparing to another git-cli (tig). Wish we have some nice cross-platform GUI with modern c++ works across linux/windows/macos too, the only choice used to be Qt. Nowadays imgui seems a good alternative.
Re: Ftxui: C++ Functional Terminal User Interface
#26Earlier quoted context omitted.
I thought flutter web uses wasm/canvas and not html am I wrong ?
No you are right, but that’s irrelevant to my point. The point being that Flutter is an example of a “react-like” framework to write UI that renders to multiple backends.
Re: Ftxui: C++ Functional Terminal User Interface
#27It looks incredibly nice, but ... I still think a text UI that looks like a GUI is combining the worst of two worlds.
Have you ever used (h)top? It's great at-a-glance view of what's going on, from the command line.
Re: Ftxui: C++ Functional Terminal User Interface
#28Earlier quoted context omitted.
Except if you need to run the app on remote server. VS Code shows how utterly difficult it is to get a GUI working well in that scenario.
What scenario are you talking about, or what does VS Code have to do with anything? Did you mean running VS Code on a remote server and forwarding it to the local machine? X11 based forwarding?
Re: Ftxui: C++ Functional Terminal User Interface
#29It looks incredibly nice, but ... I still think a text UI that looks like a GUI is combining the worst of two worlds.