FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
Modules

FTXUI is organized into three modules, each building upon the previous:

  1. Module screen — low-level rendering
  2. Module dom — layout and composition
  3. Module component — user interaction

[ Module screen ]

Defines:

Use for direct terminal drawing and styling.


[ Module dom ]

Provides:

  • ftxui::Element: a tree structure for layout and UI.
  • Composable and responsive elements.
  • Render() to draw onto a Screen.

Ideal for structured, styled UIs.


[ Module component ]

Adds:

  • ftxui::Component: stateful, interactive widgets.
  • Built-ins: Checkbox, Input, Menu, Button.
  • Supports keyboard/cursor input and composition.

Use for interactive apps.


Modules can be used independently, or together: screen → dom → component.