v3.0.1
scroll_when_needed
Ein Paket, das uns ermöglicht, nur dann zu scrollen, wenn es erforderlich ist, mit dem korrekten plattformspezifischen Verhalten.
21Likes 21630-Tage-Downloads160Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Ein Flutter-Paket, das uns nur dann scrollen lässt, wenn es nötig ist.
{"sdk":"flutter"}{"sdk":"flutter"}Englischer Projektschnappschuss. Aktuelle Inhalte auf 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,
),
],
),
),