firestore_chat

Last updated:

0 purchases

firestore_chat Image
firestore_chat Images
Add to Cart

Description:

firestore chat

Firestore Chat🔥💬 #
⛏️ Getting started #
To get started with Firebase, please see the documentation available at https://firebase.flutter.dev/docs/overview
Add Firestore Chat to your project by following the instructions on the
install page and start using it:
import 'package:firestore_chat/firestore_chat.dart';
copied to clipboard
You can open chat page either via Material route or directly push the chat page
await openChatPage(BuildContext context, ChatEntity chatEntity);
copied to clipboard
or
FirestoreChat().chatPageWidget(chatEntity)
copied to clipboard
📱 Example #
Opening chat #
final chatEntity = ChatEntity(
onMessageSent: (message, chatEntity){
//
},
mainUser: mainUser,
peers: peers,
path: chatPath,
title: "FIFA 2022 Games",
);


//WAY 1
Navigator.push(
context,
FirestoreChat().chatPageWidget(chatEntity),
);

//WAY 2
await openChatPage(context, chatEntity);
...
copied to clipboard
Models 📦 #
Peer User 👨
Fields

id - user Id
image - user image url
name - user display name

Chat Entity 📩 #
Fields

mainUser - logged in user
peers - Map of users <user ID, PeerUser>
title - name of the chat (You can name group chats, can be nullable)
path - where the messages/chat should be store on firestore
onMessageSent - callback for when the message is saved to firestore

License ⚖️ #

MIT

Issues and feedback 💭 #
If you have any suggestion for including a feature or if something doesn't work, feel free to open a Github issue for us to have a discussion on it.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.