blob: 1f4eaa96f83c4f55bd55f923c70606e27a8651e6 [file] [log] [blame]
// 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.dev/animations](https://flutter.dev/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';
export 'src/animation/tween_sequence.dart';