Renames examples for style.

This commit is contained in:
Arthur Sonzogni
2019-01-19 02:24:05 +01:00
parent 5840966049
commit cb4df0b56f
7 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
#include "ftxui/screen/screen.hpp"
#include "ftxui/dom/elements.hpp"
#include <iostream>
int main(int argc, const char *argv[])
{
using namespace ftxui;
auto document =
hbox(
text(L"This text is "),
text(L"inverted") | inverted,
text(L". Do you like it?")
);
auto screen = Screen::TerminalOutput(document);
Render(screen, document.get());
std::cout << screen.ToString();
return 0;
}