FTXUI/examples/vbox_hbox/main.cpp
2018-09-19 21:52:25 +02:00

39 lines
667 B
C++

#include "ftxui/core/screen.hpp"
#include "ftxui/core/dom/elements.hpp"
#include <iostream>
int main(int argc, const char *argv[])
{
using namespace ftxui::dom;
auto document =
vbox(
hbox(
text(L"north-west"),
flex(),
text(L"north-east")
),
flex(),
hbox(
hbox(
flex(),
text(L"center"),
flex()
)
),
flex(),
hbox(
text(L"south-west"),
flex(),
text(L"south-east")
)
);
auto screen = ftxui::Screen::WholeTerminal();
Render(screen, document.get());
std::cout << screen.ToString();
getchar();
return 0;
}