2018-10-10 01:06:03 +08:00
|
|
|
#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")
|
|
|
|
)
|
|
|
|
);
|
2018-10-10 01:06:03 +08:00
|
|
|
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;
|
|
|
|
}
|