mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This widget lets you mimic one of its children in an overlay. The overlay starts out as the same size of the child and then grows to fill the overlay. In the future, the mimic will start at the same visual position as the child.
47 lines
1.6 KiB
Dart
47 lines
1.6 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.
|
|
|
|
/// Includes and re-exports all Sky widgets classes.
|
|
|
|
export 'widgets/animated_component.dart';
|
|
export 'widgets/animated_container.dart';
|
|
export 'widgets/basic.dart';
|
|
export 'widgets/block_viewport.dart';
|
|
export 'widgets/button_base.dart';
|
|
export 'widgets/card.dart';
|
|
export 'widgets/checkbox.dart';
|
|
export 'widgets/default_text_style.dart';
|
|
export 'widgets/dialog.dart';
|
|
export 'widgets/dismissable.dart';
|
|
export 'widgets/drawer.dart';
|
|
export 'widgets/drawer_divider.dart';
|
|
export 'widgets/drawer_header.dart';
|
|
export 'widgets/drawer_item.dart';
|
|
export 'widgets/flat_button.dart';
|
|
export 'widgets/floating_action_button.dart';
|
|
export 'widgets/focus.dart';
|
|
export 'widgets/framework.dart';
|
|
export 'widgets/icon.dart';
|
|
export 'widgets/icon_button.dart';
|
|
export 'widgets/ink_well.dart';
|
|
export 'widgets/material.dart';
|
|
export 'widgets/material_button.dart';
|
|
export 'widgets/mimic.dart';
|
|
export 'widgets/mimic_overlay.dart';
|
|
export 'widgets/modal_overlay.dart';
|
|
export 'widgets/navigator.dart';
|
|
export 'widgets/popup_menu.dart';
|
|
export 'widgets/popup_menu_item.dart';
|
|
export 'widgets/radio.dart';
|
|
export 'widgets/raised_button.dart';
|
|
export 'widgets/scaffold.dart';
|
|
export 'widgets/scrollable.dart';
|
|
export 'widgets/snack_bar.dart';
|
|
export 'widgets/switch.dart';
|
|
export 'widgets/tabs.dart';
|
|
export 'widgets/task_description.dart';
|
|
export 'widgets/theme.dart';
|
|
export 'widgets/tool_bar.dart';
|
|
export 'widgets/transitions.dart';
|