You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TerminalView sets padding: MediaQuery.of(context).padding (lib/src/terminal_view.dart ~line 230), injecting safe-area insets even when not desired.
On Android/iOS this pushes terminal content down/right (logs start below a blank strip); macOS is unaffected because padding is zero.
Expected: terminal content should start at the widget’s top-left unless callers opt into safe-area handling.
Proposed fix: default to caller-controlled padding (e.g., widget.padding ?? EdgeInsets.zero) and let consumers wrap with SafeArea/MediaQuery.removePadding when needed.