mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Only partially works. Editing the selected text doesn't work very well, which probably will require engine changes. Currently only draws the selected text and allows you to manipulate the selection with draggable selection handles.
56 lines
2.0 KiB
Dart
56 lines
2.0 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.
|
|
library widgets;
|
|
|
|
export 'src/widgets/app.dart';
|
|
export 'src/widgets/asset_vendor.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/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/implicit_animations.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/scrollable_grid.dart';
|
|
export 'src/widgets/scrollable_list.dart';
|
|
export 'src/widgets/scrollable.dart';
|
|
export 'src/widgets/semantics_debugger.dart';
|
|
export 'src/widgets/status_transitions.dart';
|
|
export 'src/widgets/table.dart';
|
|
export 'src/widgets/text_selection.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;
|