paginated_listview 0.0.1+2 copy "paginated_listview: ^0.0.1+2" to clipboard
paginated_listview: ^0.0.1+2 copied to clipboard

A simple ListView to handle pagination to your API queries or whatever you want to do :)

example/lib/main.dart

import 'package:example/widgets/loading_overlay.dart';
import 'package:example/widgets/paginated_example.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Paginated Listview',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const LoadingOverlay(
        child: PaginatedExample(),
      ),
    );
  }
}
1
likes
160
points
2
downloads

Publisher

verified publisheratleugim.dev

Weekly Downloads

A simple ListView to handle pagination to your API queries or whatever you want to do :)

Homepage

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on paginated_listview