Files
FTXUI/examples/vbox_hbox/main.cpp

39 lines
662 B
C++
Raw Normal View History

#include "ftxui/screen.hpp"
#include "ftxui/dom/elements.hpp"
2018-09-18 08:48:40 +02:00
#include <iostream>
int main(int argc, const char *argv[])
{
using namespace ftxui::dom;
2018-09-19 21:52:25 +02:00
auto document =
2018-09-18 08:48:40 +02:00
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::TerminalFullscreen();
2018-09-19 21:52:25 +02:00
Render(screen, document.get());
2018-09-18 08:48:40 +02:00
std::cout << screen.ToString();
getchar();
return 0;
}