#include // for operator|, text, Element, Fit, borderDouble, borderHeavy, borderLight, borderRounded, vbox #include // for Screen #include // for endl, cout, ostream #include // for allocator #include "ftxui/dom/flexbox_config.hpp" // for ftxui #include "ftxui/dom/node.hpp" // for Render int main(int argc, const char* argv[]) { using namespace ftxui; auto document = vbox({ text("borderLight") | borderLight, text("borderHeavy") | borderHeavy, text("borderDouble") | borderDouble, text("borderRounded") | borderRounded, }); auto screen = Screen::Create(Dimension::Fit(document), Dimension::Fit(document)); Render(screen, document); screen.Print(); std::cout << std::endl; } // 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.