We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fabfcf6 commit 43e5414Copy full SHA for 43e5414
lib/frontend/terminal_view.dart
@@ -205,6 +205,9 @@ class _TerminalViewState extends State<TerminalView> {
205
child: Scrollable(
206
controller: widget.scrollController,
207
viewportBuilder: (context, offset) {
208
+ if (!widget.scrollController.hasClients) {
209
+ return buildTerminal(context);
210
+ }
211
final position = widget.scrollController.position;
212
213
/// use [_EmptyScrollActivity] to suppress unexpected behaviors
0 commit comments