animation.dart 621 Bytes
Newer Older
1 2 3 4
// 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.

5
/// The Flutter animation engine.
6
///
7
/// This library depends only on core Dart libraries and the `newton` package.
8 9
library animation;

10 11
export 'src/animation/animation.dart';
export 'src/animation/animation_controller.dart';
12
export 'src/animation/animations.dart';
13 14
export 'src/animation/curves.dart';
export 'src/animation/forces.dart';
15
export 'src/animation/listener_helpers.dart';
Adam Barth's avatar
Adam Barth committed
16
export 'src/animation/ticker.dart';
17
export 'src/animation/tween.dart';