Widgets Infinite View Pager widget for Flutter Oct 09, 2019 1 min read infinite_view_pager Flutter infinite view pager widget. Installation dependencies: infinite_view_pager: ^1.0.0 YAML Example import 'package:infinite_view_pager/infinite_view_pager.dart'; class InfiniteViewPagerDemo extends StatefulWidget { @override _InfiniteViewPagerDemoState createState() => _InfiniteViewPagerDemoState(); } class _InfiniteViewPagerDemoState extends State<InfiniteViewPagerDemo> { int index = 0; Widget _buildPage(BuildContext context, int direction) { return Container( padding: EdgeInsets.all(100.0), child: Card( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(20.0), ), elevation: 10, child: Center( child: Text( (index + direction).toString(), style: Theme.of(context).textTheme.display4, ), ), ), ); } @override Widget build(BuildContext context) { return Container( child: InfiniteViewPager( onPageChanged: (direction) { index += direction; }, pageBuilder: _buildPage, scrollDirection: Axis.vertical, ), ); } } Dart GitHub https://github.com/lesnitsky/infinite_view_pager WidgetsInfinite View
Carousel A flutter carousel widget, support infinite scroll, and custom child widget A flutter carousel widget, support infinite scroll, and custom child widget 05 November 2021
Widgets A Hold To Confirm Button widget for Flutter apps This package provides a HoldToConfirmButton widget for Flutter apps. It allows users to hold down the button, which visually fills up as it's pressed. 30 March 2024
Widgets A Flutter package allows you to effortlessly create a animated book widget UI A Flutter package allows you to effortlessly create a animated book widget UI with dynamic content rendering. 31 January 2024