FTXUI
FTXUI copied to clipboard
:computer: C++ Functional Terminal User Interface. :heart:
main.cpp: In function ‘int main(int, char**)’: main.cpp:5:10: error: ‘mutex’ is not a member of ‘std’ 5 | std::mutex s; | ^~~~~ main.cpp:2:1: note: ‘std::mutex’ is defined in header ‘’; did...
Hi there, I was looking around how to have a number-only input field in ftxui 5.0.0 and came across the `input` example: https://github.com/ArthurSonzogni/FTXUI/blob/5a9ef876a14b91a3cc5b0313cfdaf6b5527eccf4/examples/component/input.cpp#L34-L41 While playing around with this example, I...
Hi there :wave: , I would like the user of my app to be able to copy the content being displayed in the app. The clipboard being OS related, I...
getenv in clang(windows) is deprecated based on [spdlog](https://github.com/gabime/spdlog/blob/885b5473e291833b148eeac3b7ce227e582cd88b/include/spdlog/details/os-inl.h#L566)
Hello! When I tested the latest ftxui (not release 5.0.0), I found that the performance of "**Modal**" has changed compared to release 5.0.0, as the "**Modal**" component does not clear...
``` ... auto etui = CatchEvent(rtui, [&](Event event){ if(event == Event::CtrlH) { screen->Exit(); return true; } return false; }); this->content = etui; std::thread t([&]{ function->postevent = std::bind(&Tui::postevent, this, std::placeholders::_1); function->start();...
If I have Components like menu, radiobox, etc in container, it is scrollable. But elements don't seem to be scrollable. ```cpp #include #include #include #include #include ftxui::Element get_document() { using...
Hi all, I am trying to create a window element with a light border style similarly to what is specified [here](https://arthursonzogni.github.io/FTXUI/namespaceftxui.html#a03049def08fa7a5eaa4d5e897152bc1a). Example: ```cpp // With specifying border Element document =...
Hi everyone, I am trying to understand how the CatchEvent decorator interacts with components and with the Render() method. I am writing a program that has multiple tabs containing lots...
Hey, I'm trying to get modal to work for my project but I can't get it right. Maybe someone can give me a hint why the following minimum example doesn't...