animation.dart 647 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 6
/// The Flutter animation system.
///
7
/// See <https://flutter.io/animations/> for an overview.
8
///
9
/// This library depends only on core Dart libraries and the `newton` package.
10 11
library animation;

12 13
export 'src/animation/animation.dart';
export 'src/animation/animation_controller.dart';
14
export 'src/animation/animations.dart';
15 16
export 'src/animation/curves.dart';
export 'src/animation/forces.dart';
17
export 'src/animation/listener_helpers.dart';
18
export 'src/animation/tween.dart';