mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-23 13:28:08 +08:00
Add Blink. Refactor examples.
This commit is contained in:
21
examples/component/menu.cpp
Normal file
21
examples/component/menu.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#include <chrono>
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
|
||||
#include "ftxui/screen_interactive.hpp"
|
||||
#include "ftxui/component/menu.hpp"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
ftxui::ScreenInteractive screen(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();
|
||||
}
|
Reference in New Issue
Block a user