gamma_smart_pagination 1.0.3 gamma_smart_pagination: ^1.0.3 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 'features/first/view/first_screen.dart';
void main() {
runApp(
ProviderScope(
child: MaterialApp(
title: 'GammaSmartPagination demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.orange,
),
useMaterial3: true,
),
home: const FirstScreen(),
),
),
);
}