This commit is contained in:
ArthurSonzogni
2020-05-20 20:51:07 +02:00
parent 985cb35ffb
commit 957387adaa
3 changed files with 9 additions and 17 deletions

View File

@@ -11,19 +11,13 @@
int main(int argc, const char* argv[]) {
using namespace ftxui;
auto make_box = [](const std::wstring title) {
return
window(
text(title) | hcenter | bold,
text(L"content") | hcenter | dim
);
return window(text(title) | hcenter | bold,
text(L"content") | hcenter | dim);
};
Elements content;
for(int x = 3; x<30; ++x) {
content.push_back(
make_box(to_wstring(x))
| size(WIDTH, EQUAL, x)
);
for (int x = 3; x < 30; ++x) {
content.push_back(make_box(to_wstring(x)) | size(WIDTH, EQUAL, x));
}
auto document = hbox(std::move(content));