AppRunner extension

Extension that runs the TUI application by bootstrapping all core managers.

The run method initializes:

  • Terminal size
  • Canvas rendering
  • Input handling
  • Focus and interactivity

It is the main entry point for any terminal UI application built with the PixelPrompt framework.

Example usage:

void main() {
  final app = App(children: [...]);
  app.run();
}
on

Methods

run({bool fullScreenMode = false}) → void

Available on App, provided by the AppRunner extension

Initializes and runs the app.