scroll_pagination_flutter 0.0.5
scroll_pagination_flutter: ^0.0.5 copied to clipboard
As the user scrolls down your screen, pages of things will slowly load and show.
import 'package:flutter/material.dart';
import 'package:paginationdemo/university_list_screen.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) => MaterialApp(
title: 'Infinite Scroll Pagination Sample',
theme: ThemeData(
primarySwatch: Colors.green,
),
home: UniversityListScreen(),
);
}