| 1 | // Copyright 2014 The Flutter Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | /// Simple one-dimensional physics simulations, such as springs, friction, and |
| 6 | /// gravity, for use in user interface animations. |
| 7 | /// |
| 8 | /// To use, import `package:flutter/physics.dart`. |
| 9 | library physics; |
| 10 | |
| 11 | export 'src/physics/clamped_simulation.dart'; |
| 12 | export 'src/physics/friction_simulation.dart'; |
| 13 | export 'src/physics/gravity_simulation.dart'; |
| 14 | export 'src/physics/simulation.dart'; |
| 15 | export 'src/physics/spring_simulation.dart'; |
| 16 | export 'src/physics/tolerance.dart'; |
| 17 | export 'src/physics/utils.dart'; |
| 18 | |