FTXUI/examples/component/menu.cpp
Arthur Sonzogni 961e3dcb50 Pipeable decoration and the package_manager example.
- Pipeable decorator.
- package_manager example.
2019-01-05 02:03:49 +01:00

22 lines
441 B
C++

#include <chrono>
#include <iostream>
#include <thread>
#include "ftxui/screen_interactive.hpp"
#include "ftxui/component/menu.hpp"
int main(int argc, const char *argv[])
{
auto screen = ftxui::ScreenInteractive::FixedSize(30, 3);
ftxui::component::Menu menu(screen.delegate());
menu.entries = {
L"entry 1",
L"entry 2",
L"entry 3"
};
menu.selected = 0;
menu.on_enter = screen.ExitLoopClosure();
screen.Loop();
}