mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This requires all AnimationController objects to be given a TickerProvider, a class that can create the Ticker. It also provides some nice mixins for people who want to have their State provide a TickerProvider. And a schedulerTickerProvider for those cases where you just want to see your battery burn. Also, we now enforce destruction order for elements.
68 lines
2.5 KiB
Dart
68 lines
2.5 KiB
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 widget framework.
|
|
///
|
|
///
|
|
/// To use, import `package:flutter/widgets.dart`.
|
|
library widgets;
|
|
|
|
export 'src/widgets/animated_cross_fade.dart';
|
|
export 'src/widgets/animated_size.dart';
|
|
export 'src/widgets/app.dart';
|
|
export 'src/widgets/auto_layout.dart';
|
|
export 'src/widgets/banner.dart';
|
|
export 'src/widgets/basic.dart';
|
|
export 'src/widgets/binding.dart';
|
|
export 'src/widgets/child_view.dart';
|
|
export 'src/widgets/clamp_overscrolls.dart';
|
|
export 'src/widgets/container.dart';
|
|
export 'src/widgets/debug.dart';
|
|
export 'src/widgets/dismissable.dart';
|
|
export 'src/widgets/drag_target.dart';
|
|
export 'src/widgets/editable.dart';
|
|
export 'src/widgets/focus.dart';
|
|
export 'src/widgets/form.dart';
|
|
export 'src/widgets/framework.dart';
|
|
export 'src/widgets/gesture_detector.dart';
|
|
export 'src/widgets/gridpaper.dart';
|
|
export 'src/widgets/heroes.dart';
|
|
export 'src/widgets/image.dart';
|
|
export 'src/widgets/implicit_animations.dart';
|
|
export 'src/widgets/layout_builder.dart';
|
|
export 'src/widgets/lazy_block.dart';
|
|
export 'src/widgets/locale_query.dart';
|
|
export 'src/widgets/media_query.dart';
|
|
export 'src/widgets/mimic.dart';
|
|
export 'src/widgets/modal_barrier.dart';
|
|
export 'src/widgets/navigator.dart';
|
|
export 'src/widgets/notification_listener.dart';
|
|
export 'src/widgets/overlay.dart';
|
|
export 'src/widgets/page_storage.dart';
|
|
export 'src/widgets/pageable_list.dart';
|
|
export 'src/widgets/pages.dart';
|
|
export 'src/widgets/performance_overlay.dart';
|
|
export 'src/widgets/placeholder.dart';
|
|
export 'src/widgets/raw_keyboard_listener.dart';
|
|
export 'src/widgets/routes.dart';
|
|
export 'src/widgets/scroll_behavior.dart';
|
|
export 'src/widgets/scroll_configuration.dart';
|
|
export 'src/widgets/scrollable.dart';
|
|
export 'src/widgets/scrollable_grid.dart';
|
|
export 'src/widgets/scrollable_list.dart';
|
|
export 'src/widgets/semantics_debugger.dart';
|
|
export 'src/widgets/size_changed_layout_notifier.dart';
|
|
export 'src/widgets/status_transitions.dart';
|
|
export 'src/widgets/table.dart';
|
|
export 'src/widgets/text.dart';
|
|
export 'src/widgets/text_selection.dart';
|
|
export 'src/widgets/ticker_provider.dart';
|
|
export 'src/widgets/title.dart';
|
|
export 'src/widgets/transitions.dart';
|
|
export 'src/widgets/unique_widget.dart';
|
|
export 'src/widgets/virtual_viewport.dart';
|
|
|
|
export 'package:flutter/foundation.dart';
|
|
export 'package:vector_math/vector_math_64.dart' show Matrix4;
|