| 1 | // Copyright 2014 The Flutter Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | /// The Flutter widgets framework. |
| 6 | /// |
| 7 | /// To use, import `package:flutter/widgets.dart`. |
| 8 | /// |
| 9 | /// See also: |
| 10 | /// |
| 11 | /// * [flutter.dev/widgets](https://flutter.dev/widgets/) |
| 12 | /// for a catalog of commonly-used Flutter widgets. |
| 13 | library widgets; |
| 14 | |
| 15 | export 'package:characters/characters.dart' ; |
| 16 | export 'package:vector_math/vector_math_64.dart' show Matrix4; |
| 17 | |
| 18 | export 'foundation.dart' show Brightness, UniqueKey; |
| 19 | export 'rendering.dart' show TextSelectionHandleType; |
| 20 | export 'src/widgets/actions.dart'; |
| 21 | export 'src/widgets/adapter.dart'; |
| 22 | export 'src/widgets/animated_cross_fade.dart'; |
| 23 | export 'src/widgets/animated_scroll_view.dart'; |
| 24 | export 'src/widgets/animated_size.dart'; |
| 25 | export 'src/widgets/animated_switcher.dart'; |
| 26 | export 'src/widgets/annotated_region.dart'; |
| 27 | export 'src/widgets/app.dart'; |
| 28 | export 'src/widgets/app_lifecycle_listener.dart'; |
| 29 | export 'src/widgets/async.dart'; |
| 30 | export 'src/widgets/autocomplete.dart'; |
| 31 | export 'src/widgets/autofill.dart'; |
| 32 | export 'src/widgets/automatic_keep_alive.dart'; |
| 33 | export 'src/widgets/banner.dart'; |
| 34 | export 'src/widgets/basic.dart'; |
| 35 | export 'src/widgets/binding.dart'; |
| 36 | export 'src/widgets/bottom_navigation_bar_item.dart'; |
| 37 | export 'src/widgets/color_filter.dart'; |
| 38 | export 'src/widgets/container.dart'; |
| 39 | export 'src/widgets/context_menu_button_item.dart'; |
| 40 | export 'src/widgets/context_menu_controller.dart'; |
| 41 | export 'src/widgets/debug.dart'; |
| 42 | export 'src/widgets/decorated_sliver.dart'; |
| 43 | export 'src/widgets/default_selection_style.dart'; |
| 44 | export 'src/widgets/default_text_editing_shortcuts.dart'; |
| 45 | export 'src/widgets/desktop_text_selection_toolbar_layout_delegate.dart'; |
| 46 | export 'src/widgets/dismissible.dart'; |
| 47 | export 'src/widgets/display_feature_sub_screen.dart'; |
| 48 | export 'src/widgets/disposable_build_context.dart'; |
| 49 | export 'src/widgets/drag_boundary.dart'; |
| 50 | export 'src/widgets/drag_target.dart'; |
| 51 | export 'src/widgets/draggable_scrollable_sheet.dart'; |
| 52 | export 'src/widgets/dual_transition_builder.dart'; |
| 53 | export 'src/widgets/editable_text.dart'; |
| 54 | export 'src/widgets/expansible.dart'; |
| 55 | export 'src/widgets/fade_in_image.dart'; |
| 56 | export 'src/widgets/feedback.dart'; |
| 57 | export 'src/widgets/flutter_logo.dart'; |
| 58 | export 'src/widgets/focus_manager.dart'; |
| 59 | export 'src/widgets/focus_scope.dart'; |
| 60 | export 'src/widgets/focus_traversal.dart'; |
| 61 | export 'src/widgets/form.dart'; |
| 62 | export 'src/widgets/framework.dart'; |
| 63 | export 'src/widgets/gesture_detector.dart'; |
| 64 | export 'src/widgets/grid_paper.dart'; |
| 65 | export 'src/widgets/heroes.dart'; |
| 66 | export 'src/widgets/icon.dart'; |
| 67 | export 'src/widgets/icon_data.dart'; |
| 68 | export 'src/widgets/icon_theme.dart'; |
| 69 | export 'src/widgets/icon_theme_data.dart'; |
| 70 | export 'src/widgets/image.dart'; |
| 71 | export 'src/widgets/image_filter.dart'; |
| 72 | export 'src/widgets/image_icon.dart'; |
| 73 | export 'src/widgets/implicit_animations.dart'; |
| 74 | export 'src/widgets/inherited_model.dart'; |
| 75 | export 'src/widgets/inherited_notifier.dart'; |
| 76 | export 'src/widgets/inherited_theme.dart'; |
| 77 | export 'src/widgets/interactive_viewer.dart'; |
| 78 | export 'src/widgets/keyboard_listener.dart'; |
| 79 | export 'src/widgets/layout_builder.dart'; |
| 80 | export 'src/widgets/list_wheel_scroll_view.dart'; |
| 81 | export 'src/widgets/localizations.dart'; |
| 82 | export 'src/widgets/lookup_boundary.dart'; |
| 83 | export 'src/widgets/magnifier.dart'; |
| 84 | export 'src/widgets/media_query.dart'; |
| 85 | export 'src/widgets/modal_barrier.dart'; |
| 86 | export 'src/widgets/navigation_toolbar.dart'; |
| 87 | export 'src/widgets/navigator.dart'; |
| 88 | export 'src/widgets/navigator_pop_handler.dart'; |
| 89 | export 'src/widgets/nested_scroll_view.dart'; |
| 90 | export 'src/widgets/notification_listener.dart'; |
| 91 | export 'src/widgets/orientation_builder.dart'; |
| 92 | export 'src/widgets/overflow_bar.dart'; |
| 93 | export 'src/widgets/overlay.dart'; |
| 94 | export 'src/widgets/overscroll_indicator.dart'; |
| 95 | export 'src/widgets/page_storage.dart'; |
| 96 | export 'src/widgets/page_view.dart'; |
| 97 | export 'src/widgets/pages.dart'; |
| 98 | export 'src/widgets/performance_overlay.dart'; |
| 99 | export 'src/widgets/pinned_header_sliver.dart'; |
| 100 | export 'src/widgets/placeholder.dart'; |
| 101 | export 'src/widgets/platform_menu_bar.dart'; |
| 102 | export 'src/widgets/platform_selectable_region_context_menu.dart'; |
| 103 | export 'src/widgets/platform_view.dart'; |
| 104 | export 'src/widgets/pop_scope.dart'; |
| 105 | export 'src/widgets/preferred_size.dart'; |
| 106 | export 'src/widgets/primary_scroll_controller.dart'; |
| 107 | export 'src/widgets/radio_group.dart'; |
| 108 | export 'src/widgets/raw_keyboard_listener.dart'; |
| 109 | export 'src/widgets/raw_menu_anchor.dart'; |
| 110 | export 'src/widgets/raw_radio.dart'; |
| 111 | export 'src/widgets/reorderable_list.dart'; |
| 112 | export 'src/widgets/restoration.dart'; |
| 113 | export 'src/widgets/restoration_properties.dart'; |
| 114 | export 'src/widgets/router.dart'; |
| 115 | export 'src/widgets/routes.dart'; |
| 116 | export 'src/widgets/safe_area.dart'; |
| 117 | export 'src/widgets/scroll_activity.dart'; |
| 118 | export 'src/widgets/scroll_aware_image_provider.dart'; |
| 119 | export 'src/widgets/scroll_configuration.dart'; |
| 120 | export 'src/widgets/scroll_context.dart'; |
| 121 | export 'src/widgets/scroll_controller.dart'; |
| 122 | export 'src/widgets/scroll_delegate.dart'; |
| 123 | export 'src/widgets/scroll_metrics.dart'; |
| 124 | export 'src/widgets/scroll_notification.dart'; |
| 125 | export 'src/widgets/scroll_notification_observer.dart'; |
| 126 | export 'src/widgets/scroll_physics.dart'; |
| 127 | export 'src/widgets/scroll_position.dart'; |
| 128 | export 'src/widgets/scroll_position_with_single_context.dart'; |
| 129 | export 'src/widgets/scroll_simulation.dart'; |
| 130 | export 'src/widgets/scroll_view.dart'; |
| 131 | export 'src/widgets/scrollable.dart'; |
| 132 | export 'src/widgets/scrollable_helpers.dart'; |
| 133 | export 'src/widgets/scrollbar.dart'; |
| 134 | export 'src/widgets/selectable_region.dart'; |
| 135 | export 'src/widgets/selection_container.dart'; |
| 136 | export 'src/widgets/semantics_debugger.dart'; |
| 137 | export 'src/widgets/sensitive_content.dart'; |
| 138 | export 'src/widgets/service_extensions.dart'; |
| 139 | export 'src/widgets/shared_app_data.dart'; |
| 140 | export 'src/widgets/shortcuts.dart'; |
| 141 | export 'src/widgets/single_child_scroll_view.dart'; |
| 142 | export 'src/widgets/size_changed_layout_notifier.dart'; |
| 143 | export 'src/widgets/sliver.dart'; |
| 144 | export 'src/widgets/sliver_fill.dart'; |
| 145 | export 'src/widgets/sliver_floating_header.dart'; |
| 146 | export 'src/widgets/sliver_layout_builder.dart'; |
| 147 | export 'src/widgets/sliver_persistent_header.dart'; |
| 148 | export 'src/widgets/sliver_prototype_extent_list.dart'; |
| 149 | export 'src/widgets/sliver_resizing_header.dart'; |
| 150 | export 'src/widgets/sliver_tree.dart'; |
| 151 | export 'src/widgets/slotted_render_object_widget.dart'; |
| 152 | export 'src/widgets/snapshot_widget.dart'; |
| 153 | export 'src/widgets/spacer.dart'; |
| 154 | export 'src/widgets/spell_check.dart'; |
| 155 | export 'src/widgets/standard_component_type.dart'; |
| 156 | export 'src/widgets/status_transitions.dart'; |
| 157 | export 'src/widgets/system_context_menu.dart'; |
| 158 | export 'src/widgets/table.dart'; |
| 159 | export 'src/widgets/tap_region.dart'; |
| 160 | export 'src/widgets/text.dart'; |
| 161 | export 'src/widgets/text_editing_intents.dart'; |
| 162 | export 'src/widgets/text_selection.dart'; |
| 163 | export 'src/widgets/text_selection_toolbar_anchors.dart'; |
| 164 | export 'src/widgets/text_selection_toolbar_layout_delegate.dart'; |
| 165 | export 'src/widgets/texture.dart'; |
| 166 | export 'src/widgets/ticker_provider.dart'; |
| 167 | export 'src/widgets/title.dart'; |
| 168 | export 'src/widgets/toggleable.dart'; |
| 169 | export 'src/widgets/transitions.dart'; |
| 170 | export 'src/widgets/tween_animation_builder.dart'; |
| 171 | export 'src/widgets/two_dimensional_scroll_view.dart'; |
| 172 | export 'src/widgets/two_dimensional_viewport.dart'; |
| 173 | export 'src/widgets/undo_history.dart'; |
| 174 | export 'src/widgets/unique_widget.dart'; |
| 175 | export 'src/widgets/value_listenable_builder.dart'; |
| 176 | export 'src/widgets/view.dart'; |
| 177 | export 'src/widgets/viewport.dart'; |
| 178 | export 'src/widgets/visibility.dart'; |
| 179 | export 'src/widgets/widget_inspector.dart'; |
| 180 | export 'src/widgets/widget_span.dart'; |
| 181 | export 'src/widgets/widget_state.dart'; |
| 182 | export 'src/widgets/will_pop_scope.dart'; |
| 183 | |