FTXUI  5.0.0
C++ functional terminal UI.
examples/dom/linear_gradient.cpp
// Copyright 2023 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
#include <ftxui/dom/elements.hpp> // for bgcolor, operator|, operator|=, text, center, Element
#include <ftxui/dom/linear_gradient.hpp> // for LinearGradient::Stop, LinearGradient
#include <ftxui/screen/screen.hpp> // for Full, Screen
#include <memory> // for allocator, shared_ptr
#include "ftxui/dom/node.hpp" // for Render
#include "ftxui/screen/color.hpp" // for Color, Color::DeepPink1, Color::DeepSkyBlue1, Color::Yellow, ftxui
int main() {
using namespace ftxui;
auto document = text("gradient") | center;
document |= bgcolor(LinearGradient()
.Angle(45)
Render(screen, document);
screen.Print();
return 0;
}
@ DeepSkyBlue1
Definition: color.hpp:125
static Screen Create(Dimensions dimension)
Create a screen with the given dimension.
Definition: screen.cpp:386
Dimensions Full()
Definition: screen.cpp:374
Decorator bgcolor(Color)
Decorate using a background color.
Definition: color.cpp:105
Element center(Element)
Center an element horizontally and vertically.
Element text(std::wstring text)
Display a piece of unicode text.
Definition: text.cpp:120
void Render(Screen &screen, const Element &element)
Display an element on a ftxui::Screen.
Definition: node.cpp:47