FTXUI/examples/dom/border.cpp

37 lines
920 B
C++
Raw Normal View History

2018-09-22 15:49:43 +08:00
#include <chrono>
2020-05-25 07:34:13 +08:00
#include <ftxui/dom/elements.hpp>
#include <ftxui/screen/screen.hpp>
2018-09-22 15:49:43 +08:00
#include <iostream>
#include <thread>
2020-03-23 05:32:44 +08:00
int main(int argc, const char* argv[]) {
using namespace ftxui;
2020-05-25 07:34:13 +08:00
auto document = //
hbox({
vbox({
text(L"Line 1"),
text(L"Line 2"),
text(L"Line 3"),
}) | border,
vbox({
text(L"Line 4"),
text(L"Line 5"),
text(L"Line 6"),
}) | border,
vbox({
text(L"Line 7"),
text(L"Line 8"),
text(L"Line 9"),
}) | border,
});
2019-01-27 04:52:55 +08:00
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
Render(screen, document);
2021-03-22 05:54:39 +08:00
screen.Print();
2018-09-22 15:49:43 +08:00
}
2020-09-06 19:46:56 +08:00
// 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.