void runTerminalApp(Widget root, {ThemeData? theme}) { final wrapped = theme != null ? Theme(data: theme, child: root) : root; _runApp(wrapped); }