FTXUI/examples/component/button.cpp

10 lines
297 B
C++
Raw Permalink Normal View History

2025-03-23 22:29:01 +08:00
#include "ftxui/component/component.hpp"
#include "ftxui/component/screen_interactive.hpp"
int main(){
auto screen = ftxui::ScreenInteractive::Fullscreen();
auto testComponent = ftxui::Renderer([](){return ftxui::text("test Component");});
screen.Loop(testComponent);
return 0;
2020-08-26 22:26:09 +08:00
}