Iconica-Development / flutter_chat

Add a (personal or group) chat to your Flutter-application.
BSD 3-Clause "New" or "Revised" License
2 stars 0 forks source link

Split chat metadata from the chatmessages #34

Closed freekvandeven closed 9 months ago

freekvandeven commented 10 months ago

Currently the information about chats, like last message, personal, and the title is also stored with all the messages in the same document. The messages can be a lot and in firebase you can't fetch a small part of a document so we will have to split the metadata and the actual messages of a chat into 2 seperate collections. For the chatoverview screen we only fetch the metadata and when you click on a chat it will fetch all the messages of that chat.