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