Adam Barth 7d5f172a26 Remove Force and SpringForce (#7532)
The only client of this machinery was AnimationController.fling, but
it's easier for that function to just create the simulation it needs
directly.

Fixes #7216
2017-01-18 16:32:00 -08:00

20 lines
697 B
Dart

// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// The Flutter animation system.
///
/// To use, import `package:flutter/animation.dart`.
///
/// See [flutter.io/animations](https://flutter.io/animations/) for an overview.
///
/// This library depends only on core Dart libraries and the `physics.dart` library.
library animation;
export 'src/animation/animation.dart';
export 'src/animation/animation_controller.dart';
export 'src/animation/animations.dart';
export 'src/animation/curves.dart';
export 'src/animation/listener_helpers.dart';
export 'src/animation/tween.dart';