flutter_chat_paginator 0.0.2 copy "flutter_chat_paginator: ^0.0.2" to clipboard
flutter_chat_paginator: ^0.0.2 copied to clipboard

A powerful and lightweight chat pagination system built for Flutter, designed for smooth infinite scrolling and state management with Riverpod

0.0.2 #

  • updated README for pub.dev compatibility.

0.0.1 #

🎉 Initial Release #

The first release of flutter_chat_pagination — a lightweight, Riverpod-powered chat pagination system for Flutter.

✨ Features #

  • Infinite scroll pagination with FlutterListView
  • Simple ChatPaginationController API for handling page requests
  • Reactive state management using ChatPaginationNotifier
  • Scroll-based automatic page loading
  • Configurable preload offsets and scroll thresholds
  • Customizable loading and empty states
  • Easy integration with any chat bubble or list item UI

🧱 Core Components #

  • ChatPaginationController – controls pagination logic and triggers
  • ChatPaginationView – displays the list with scroll detection
  • ChatPaginationNotifier / State – manages messages and load state

🚀 Example #

A minimal working example is included in the README:

ChatPaginationView(
  controller: controller,
  itemBuilder: (context, index, message) {
    return ChatBubble(message: message);
  },
);

1
likes
160
points
13
downloads

Publisher

unverified uploader

Weekly Downloads

A powerful and lightweight chat pagination system built for Flutter, designed for smooth infinite scrolling and state management with Riverpod

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

easy_bubble_container, flutter, flutter_list_view, flutter_riverpod

More

Packages that depend on flutter_chat_paginator