gamma_smart_pagination 1.0.5 gamma_smart_pagination: ^1.0.5 copied to clipboard
Flutter package for infinite scrolling pagination, which supports pull down to refresh and pull up to load more.
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:smart_pagination_example/features/landing/landing_screen.dart';
void main() {
runApp(
ProviderScope(
child: MaterialApp(
title: 'GammaSmartPagination demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.orange,
),
useMaterial3: true,
),
home: const ExampleLandingScreen(),
),
),
);
}