enhanced_paginated_view 0.0.1 enhanced_paginated_view: ^0.0.1 copied to clipboard
the enhanced paginated list view is one of a kind list widget that support pagination
import 'package:example/vanilla_example/view/vanilla_view.dart';
import 'package:flutter/material.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Flutter Demo for enhanced_paginated_view',
home: VanillaView(),
);
}
}