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 2b98174 commit 5733e75Copy full SHA for 5733e75
lib/frontend/terminal_view.dart
@@ -209,7 +209,8 @@ class _TerminalViewState extends State<TerminalView> {
209
// with widgets such as Scrollbar.
210
return NotificationListener<ScrollNotification>(
211
onNotification: (notification) {
212
- onScroll(notification.metrics.pixels);
+ //onScroll(notification.metrics.pixels);
213
+ new Future.microtask(() => onScroll(notification.metrics.pixels));
214
return false;
215
},
216
child: ScrollConfiguration(
pubspec.yaml
@@ -4,7 +4,7 @@ version: 2.6.0
4
homepage: https://github.com/TerminalStudio/xterm.dart
5
6
environment:
7
- sdk: ">=2.12.0 <3.0.0"
+ sdk: ">=2.16.1 <3.0.0"
8
flutter: ">=2.0.0"
9
10
dependencies:
0 commit comments