فهرست منبع

override isScrolling

xuty 4 سال پیش
والد
کامیت
6ec60536d0
1فایلهای تغییر یافته به همراه6 افزوده شده و 1 حذف شده
  1. 6 1
      lib/frontend/terminal_view.dart

+ 6 - 1
lib/frontend/terminal_view.dart

@@ -554,10 +554,15 @@ class TerminalPainter extends CustomPainter {
 }
 
 /// A scroll activity that does nothing. Used to suppress unexpected behaviors
-/// from [Scrollable].
+/// from [Scrollable] during viewport building process.
 class _EmptyScrollActivity extends IdleScrollActivity {
   _EmptyScrollActivity(ScrollActivityDelegate delegate) : super(delegate);
 
   @override
   void applyNewDimensions() {}
+
+  /// set [isScrolling] to ture to prevent flutter from calling the old scroll
+  /// activity.
+  @override
+  final isScrolling = true;
 }