#include // for EXIT_SUCCESS #include // for text, operator|, vbox, border, Element, Fit, hbox #include // for Full, Screen #include // for allocator #include "ftxui/dom/node.hpp" // for Render #include "ftxui/screen/color.hpp" // for ftxui int main() { using namespace ftxui; auto document = // hbox({ vbox({ text("Line 1"), text("Line 2"), text("Line 3"), }) | border, vbox({ text("Line 4"), text("Line 5"), text("Line 6"), }) | border, vbox({ text("Line 7"), text("Line 8"), text("Line 9"), }) | border, }); auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document)); Render(screen, document); screen.Print(); return EXIT_SUCCESS; } // Copyright 2020 Arthur Sonzogni. All rights reserved. // Use of this source code is governed by the MIT license that can be found in // the LICENSE file.