| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:math' as math; | 5 import 'dart:math' as math; |
| 6 import 'dart:sky' as sky; | 6 import 'dart:sky' as sky; |
| 7 | 7 |
| 8 import '../animation/generators.dart'; | 8 import '../animation/generators.dart'; |
| 9 import '../animation/mechanics.dart'; | 9 import '../animation/mechanics.dart'; |
| 10 import '../animation/scroll_behavior.dart'; | 10 import '../animation/scroll_behavior.dart'; |
| 11 import '../theme/edges.dart'; | |
| 12 import '../theme/view_configuration.dart' as config; | 11 import '../theme/view_configuration.dart' as config; |
| 13 import 'basic.dart'; | 12 import 'basic.dart'; |
| 14 import 'material.dart'; | 13 import 'material.dart'; |
| 15 | 14 |
| 16 const double _kMillisecondsPerSecond = 1000.0; | 15 const double _kMillisecondsPerSecond = 1000.0; |
| 17 | 16 |
| 18 double _velocityForFlingGesture(sky.GestureEvent event) { | 17 double _velocityForFlingGesture(sky.GestureEvent event) { |
| 19 return math.max(-config.kMaxFlingVelocity, math.min(config.kMaxFlingVelocity, | 18 return math.max(-config.kMaxFlingVelocity, math.min(config.kMaxFlingVelocity, |
| 20 -event.velocityY)) / _kMillisecondsPerSecond; | 19 -event.velocityY)) / _kMillisecondsPerSecond; |
| 21 } | 20 } |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 154 |
| 156 void _handleFlingCancel(sky.GestureEvent event) { | 155 void _handleFlingCancel(sky.GestureEvent event) { |
| 157 _startSimulation(_createParticle()); | 156 _startSimulation(_createParticle()); |
| 158 } | 157 } |
| 159 | 158 |
| 160 void _handleWheel(sky.WheelEvent event) { | 159 void _handleWheel(sky.WheelEvent event) { |
| 161 scrollBy(-event.offsetY); | 160 scrollBy(-event.offsetY); |
| 162 } | 161 } |
| 163 | 162 |
| 164 } | 163 } |
| OLD | NEW |