mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-01 16:51:33 +08:00
29 lines
925 B
C++
29 lines
925 B
C++
#include <ftxui/dom/elements.hpp>
|
|
#include <ftxui/screen/screen.hpp>
|
|
#include <vector>
|
|
|
|
#include "ftxui/dom/node.hpp"
|
|
#include "ftxui/screen/box.hpp"
|
|
#include "ftxui/screen/color.hpp"
|
|
|
|
int main(void) {
|
|
using namespace ftxui;
|
|
Element document = graph([](int x, int y) {
|
|
std::vector<int> result(x, 0);
|
|
for (int i{0}; i < x; ++i) {
|
|
result[i] = ((3 * i) / 2) % y;
|
|
}
|
|
return result;
|
|
}) |
|
|
color(Color::Red) | border | color(Color::Green) |
|
|
bgcolor(Color::DarkBlue);
|
|
|
|
auto screen = Screen::Create(Dimension::Fixed(80), Dimension::Fixed(10));
|
|
Render(screen, document);
|
|
screen.Print();
|
|
}
|
|
|
|
// 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.
|