infinite_scroll_pagination 4.1.0 copy "infinite_scroll_pagination: ^4.1.0" to clipboard
infinite_scroll_pagination: ^4.1.0 copied to clipboard

Lazily load and display pages of items as the user scrolls down your screen.

example/lib/main.dart

import 'package:infinite_example/common/touch_physics.dart';
import 'package:infinite_example/home_screen.dart';
import 'package:flutter/material.dart';

void main() => runApp(const App());

class App extends StatelessWidget {
  const App({super.key});

  @override
  Widget build(BuildContext context) => MaterialApp(
        title: 'Infinite Scroll Pagination Sample',
        scrollBehavior: const TouchBehaviour(),
        theme: ThemeData.from(
          useMaterial3: true,
          colorScheme: ColorScheme.fromSeed(
            seedColor: Colors.greenAccent,
            brightness:
                WidgetsBinding.instance.platformDispatcher.platformBrightness,
          ),
        ),
        home: const Home(),
      );
}
3.69k
likes
160
points
363k
downloads

Publisher

verified publisheredsonbueno.com

Weekly Downloads

Lazily load and display pages of items as the user scrolls down your screen.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_staggered_grid_view, sliver_tools

More

Packages that depend on infinite_scroll_pagination