animation.dart 743 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 system.
6
///
7
/// To use, import `package:flutter/animation.dart`.
8
///
9
/// See [flutter.dev/animations](https://flutter.dev/animations/) for an overview.
10
///
11
/// This library depends only on core Dart libraries and the `physics.dart` library.
12 13
library animation;

14 15
export 'src/animation/animation.dart';
export 'src/animation/animation_controller.dart';
16
export 'src/animation/animations.dart';
17
export 'src/animation/curves.dart';
18
export 'src/animation/listener_helpers.dart';
19
export 'src/animation/tween.dart';
20
export 'src/animation/tween_sequence.dart';