Category : Scroll

easy_scroll_to_index A new Flutter package support scroll to index for Listview, Gridview and NestedScrollView Author: DinhVanHung Demo Example: Display on UI To display on UI, currently you can use EasyScrollToIndex. Example: vertical horizontal Download scroll to index package source code at GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

An attempt to implement better scrolling for Flutter Web and Desktop. Includes keyboard, MButton and custom mouse wheel scrolling. Getting started Example Usage and features Example Usage and features (from the example app) final controller = ScrollController(); … ImprovedScrolling( scrollController: controller, onScroll: (scrollOffset) => debugPrint( ‘Scroll offset: $scrollOffset’, ), onMMBScrollStateChanged: (scrolling) => debugPrint( ‘Is scrolling: $scrolling’, ..

Read more

flutter_scroll_to_top A wrapper to show a scroll to top prompt to the user on scrollable widgets. Installing Add the following dependency to your pubspec.yaml file: dependencies: flutter_scroll_to_top: ^1.1.0 Import the package import ‘package:flutter_scroll_to_top/flutter_scroll_to_top.dart’; ScrollWrapper Just wrap the scrollable widget you want to show the scroll to top prompt over with a ScrollWrapper, and supply the ScrollController of the scrollable widget ..

Read more

scroll-to-index This package provides the scroll to index mechanism for fixed/variable row height for Flutter scrollable widget. Getting Started In the pubspec.yaml of your flutter project, add the following dependency: dependencies: … scroll_to_index: any In your library add the following import: import ‘package:scroll_to_index/scroll_to_index.dart’; For help getting started with Flutter, view the online documentation. Usage This is a widget ..

Read more

linked_scroll_widgets A lib full of widgets that can react to the scrollController’s offset change,to custom your UI effect. Get started with an simple example: LinkedOpacityWidget: class LinkedOpacityPage extends StatefulWidget { @override _LinkedOpacityPageState createState() => _LinkedOpacityPageState(); } class _LinkedOpacityPageState extends State<LinkedOpacityPage> { ScrollController controller; @override void initState() { super.initState(); controller = ScrollController(); } @override Widget build(BuildContext ..

Read more