FTXUI/examples/component/checkbox.cpp

22 lines
691 B
C++
Raw Normal View History

#include "ftxui/component/screen_interactive.hpp" // for Component, ScreenInteractive
#include "ftxui/dom/elements.hpp"
#include "ftxui/component/component.hpp"
2019-01-13 05:25:49 +08:00
2021-05-13 17:44:47 +08:00
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)));
}
2021-05-10 02:32:27 +08:00
auto renderer = Renderer(input_list, [&] {
return input_list->Render() | vscroll_indicator | frame | border |
size(HEIGHT, LESS_THAN, 10);
2021-05-10 02:32:27 +08:00
});
2020-03-23 05:32:44 +08:00
2019-01-20 05:06:05 +08:00
auto screen = ScreenInteractive::TerminalOutput();
screen.Loop(renderer);
2019-01-13 05:25:49 +08:00
}