mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-23 03:10:01 +08:00
5887114793
The goal is to increase the separation in between: * ftxui::screen * ftxui::dom * ftxui::component
22 lines
456 B
C++
22 lines
456 B
C++
#include "ftxui/screen/screen.hpp"
|
|
#include "ftxui/dom/elements.hpp"
|
|
#include <iostream>
|
|
|
|
int main(int argc, const char *argv[])
|
|
{
|
|
using namespace ftxui::screen;
|
|
using namespace ftxui::dom;
|
|
auto document =
|
|
hbox(
|
|
text(L"This text is "),
|
|
text(L"blink") | blink,
|
|
text(L". Do you like it?")
|
|
);
|
|
auto screen = Screen::TerminalOutput(document);
|
|
Render(screen, document.get());
|
|
|
|
std::cout << screen.ToString();
|
|
|
|
return 0;
|
|
}
|