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