mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-23 19:20:50 +08:00
21 lines
491 B
C++
21 lines
491 B
C++
#include <chrono>
|
|
#include <iostream>
|
|
#include <thread>
|
|
|
|
#include "ftxui/component/menu.hpp"
|
|
#include "ftxui/component/screen_interactive.hpp"
|
|
|
|
int main(int argc, const char* argv[]) {
|
|
using namespace ftxui;
|
|
auto screen = ScreenInteractive::TerminalOutput();
|
|
|
|
Menu menu;
|
|
menu.entries = {L"entry 1", L"entry 2", L"entry 3"};
|
|
menu.selected = 0;
|
|
menu.on_enter = screen.ExitLoopClosure();
|
|
|
|
screen.Loop(&menu);
|
|
|
|
std::cout << "Selected element = " << menu.selected << std::endl;
|
|
}
|