Skip to content

Question: Menu of Input? #249

Answered by ArthurSonzogni
TheBjoel2 asked this question in Q&A
Discussion options

You must be logged in to vote

On this example:

#include "ftxui/component/screen_interactive.hpp"  // for Component, ScreenInteractive
#include "ftxui/dom/elements.hpp"
#include "ftxui/component/component.hpp"

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(re…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@ArthurSonzogni
Comment options

Answer selected by TheBjoel2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #248 on November 01, 2021 23:00.