devs_chat 0.0.1 copy "devs_chat: ^0.0.1" to clipboard
devs_chat: ^0.0.1 copied to clipboard

A customizable Flutter chat UI package with Firebase Firestore integration. Create beautiful chat interfaces easily.

Devs Chat Show Image Show Image A customizable Flutter chat UI package with Firebase Firestore integration. Quickly implement beautiful chat interfaces in your Flutter applications with minimal configuration. Features

🔥 Firebase Firestore Integration - Seamlessly stores and retrieves messages 🎨 Customizable UI - Multiple chat card and app bar styles 🔄 Real-time Updates - See new messages instantly 📱 Responsive Design - Works on all screen sizes ⚙️ Highly Configurable - Adapt to your specific needs

Screenshots

Simple Chat Gradient Chat
Installation Add devs_chat to your pubspec.yaml: yamldependencies: flutter: sdk: flutter devs_chat: ^0.0.1 Run the following command: bash$ flutter pub get Make sure to initialize Firebase in your app before using this package: dartvoid main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp(); runApp(MyApp()); } Usage Basic Chat Screen dartDevsChatScreen( collectionName: "chats", userIdKey: 'userId', messageKey: 'message', chatCardType: ChatCardType.simple_chat_card, myUserId: 'user1', oppUserId: 'user2', appBar: ChatAppBarType.default_app_bar, chatListKey: 'chats', ) Complete Example dartimport 'package:devs_chat/devs_chat.dart'; import 'package:flutter/material.dart';

class ChatScreen extends StatefulWidget { @override State

class _ChatScreenState extends State

5
likes
0
points
15
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable Flutter chat UI package with Firebase Firestore integration. Create beautiful chat interfaces easily.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cloud_firestore, firebase_core, flutter

More

Packages that depend on devs_chat