v3.0.1
scroll_when_needed
必要な場合にのみスクロールできるようにし、正しいプラットフォーム固有の動作を提供するパッケージです。
21いいね 21630日間ダウンロード160Pub ポイント
AndroidiOSWebmacOSWindowsLinux
必要に応じてスクロールできるようにするFlutterパッケージ。
{"sdk":"flutter"}{"sdk":"flutter"}以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
This packages contains a custom scrollbehavior and scroll physics that can be used to have platform specific scrolling behaviour when there is not enough space in a scrollable widget
How to use this package:
ScrollConfiguration(
behavior: ScrollWhenNeededBehavior(),
child: ListView(
physics: ScrollWhenNeededPhysics(targetPlatform: Theme.of(context).platform),
children: [
Container(
height: 100,
color: Colors.amber,
),
TextField(),
Container(
height: 300,
color: Colors.amber,
),
],
),
),