mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-23 11:17:06 +08:00
ef0de8d873
[nxxm](https://nxxm.github.io)
612 B
612 B
Add dependency
.nxxm/deps
{
"arthursonzogni/ftxui": {}
}
Example project
main.cpp
#include "ftxui/screen/screen.hpp"
#include "ftxui/dom/elements.hpp"
#include <iostream>
int main(int argc, const char *argv[]) {
using namespace ftxui;
auto document =
hbox(
text(L"left") | bold | border,
text(L"middle") | flex | border,
text(L"right") | border
);
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
Render(screen, document.get());
std::cout << screen.ToString();
return 0;
}
Build
nxxm . -t clang-cxx17