flutter_infinite_chat_list 0.1.1 copy "flutter_infinite_chat_list: ^0.1.1" to clipboard
flutter_infinite_chat_list: ^0.1.1 copied to clipboard

A high-performance, generic animated chat list widget for Flutter with bi-directional infinite pagination, scroll-to-index, animated mutations, and keyboard-aware spacing.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'chat_screen.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'ChatList Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorSchemeSeed: Colors.indigo,
        useMaterial3: true,
        brightness: Brightness.light,
      ),
      darkTheme: ThemeData(
        colorSchemeSeed: Colors.indigo,
        useMaterial3: true,
        brightness: Brightness.dark,
      ),
      home: const ChatScreen(),
    );
  }
}
1
likes
150
points
120
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A high-performance, generic animated chat list widget for Flutter with bi-directional infinite pagination, scroll-to-index, animated mutations, and keyboard-aware spacing.

Repository (GitHub)
View/report issues

Topics

#chat #list #animation #pagination #scroll

License

MIT (license)

Dependencies

diffutil_dart, flutter, scrollview_observer

More

Packages that depend on flutter_infinite_chat_list