mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 18:59:59 +08:00
602392c43d
This implement the flexbox elements, following the HTML one. Built from them, there is also the following elements: - `paragraph` - `paragraphAlignLeft` - `paragraphAlignRight` - `paragraphAlignCenter` - `paragraphAlignJustify` This is a breaking change.
32 lines
1.2 KiB
C++
32 lines
1.2 KiB
C++
#include <memory> // for allocator, __shared_ptr_access
|
|
#include <string> // for string, basic_string, operator+, to_string
|
|
#include <vector> // for vector
|
|
|
|
#include "ftxui/component/captured_mouse.hpp" // for ftxui
|
|
#include "ftxui/component/component.hpp" // for Input, Renderer, Vertical
|
|
#include "ftxui/component/component_base.hpp" // for ComponentBase
|
|
#include "ftxui/component/screen_interactive.hpp" // for Component, ScreenInteractive
|
|
#include "ftxui/dom/elements.hpp" // for operator|, Element, size, border, frame, vscroll_indicator, HEIGHT, LESS_THAN
|
|
|
|
int main(int argc, const char* argv[]) {
|
|
using namespace ftxui;
|
|
|
|
Component input_list = Container::Vertical({});
|
|
std::vector<std::string> items(100, "");
|
|
for (int i = 0; i < items.size(); ++i) {
|
|
input_list->Add(Input(&(items[i]), "placeholder " + std::to_string(i)));
|
|
}
|
|
|
|
auto renderer = Renderer(input_list, [&] {
|
|
return input_list->Render() | vscroll_indicator | frame | border |
|
|
size(HEIGHT, LESS_THAN, 10);
|
|
});
|
|
|
|
auto screen = ScreenInteractive::TerminalOutput();
|
|
screen.Loop(renderer);
|
|
}
|
|
|
|
// Copyright 2021 Arthur Sonzogni. All rights reserved.
|
|
// Use of this source code is governed by the MIT license that can be found in
|
|
// the LICENSE file.
|