mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
ScrollableList2 uses the same pattern as ScrollableGrid, which requires the client to allocate widgets for every list item but doesn't inflate them unless they're actually needed for the view. It improves on the original ScrollableList by not requiring a rebuild of the whole visible portion of the list when scrolling. In fact, small scrolls can often be handled entirely by repainting.
45 lines
1.6 KiB
Dart
45 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.
|
|
|
|
/// The Flutter widget framework.
|
|
library widgets;
|
|
|
|
export 'src/widgets/animated_container.dart';
|
|
export 'src/widgets/basic.dart';
|
|
export 'src/widgets/binding.dart';
|
|
export 'src/widgets/dismissable.dart';
|
|
export 'src/widgets/drag_target.dart';
|
|
export 'src/widgets/editable_text.dart';
|
|
export 'src/widgets/enter_exit_transition.dart';
|
|
export 'src/widgets/focus.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/homogeneous_viewport.dart';
|
|
export 'src/widgets/locale_query.dart';
|
|
export 'src/widgets/media_query.dart';
|
|
export 'src/widgets/mimic.dart';
|
|
export 'src/widgets/mixed_viewport.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/pages.dart';
|
|
export 'src/widgets/pageable_list.dart';
|
|
export 'src/widgets/placeholder.dart';
|
|
export 'src/widgets/routes.dart';
|
|
export 'src/widgets/scrollable.dart';
|
|
export 'src/widgets/scrollable_grid.dart';
|
|
export 'src/widgets/scrollable_list.dart';
|
|
export 'src/widgets/statistics_overlay.dart';
|
|
export 'src/widgets/status_transitions.dart';
|
|
export 'src/widgets/title.dart';
|
|
export 'src/widgets/transitions.dart';
|
|
export 'src/widgets/unique_component.dart';
|
|
export 'src/widgets/virtual_viewport.dart';
|
|
|
|
export 'package:vector_math/vector_math_64.dart' show Matrix4;
|