mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-26 20:47:05 +08:00
5887114793
The goal is to increase the separation in between: * ftxui::screen * ftxui::dom * ftxui::component
19 lines
479 B
C++
19 lines
479 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::component;
|
|
using namespace ftxui::screen;
|
|
auto screen = ScreenInteractive::FixedSize(30, 3);
|
|
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();
|
|
}
|