We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(A clear and concise description of what the proposal is.)
(yes)
I have the idea of adding an icon to read the message for whoever the recipient sees from the sender ! in the form of the following:
//update read status of message static Future updateMessageReadStatus(Message message) async { firestore .collection('chats/${getConversationID(message.fromId)}/messages/') .doc(message.sent) .update({'read': DateTime.now().millisecondsSinceEpoch.toString()}); }
if (widget.message.read.isNotEmpty) const Icon(Icons.done_all_rounded, color: Colors.blue, size: 20),
The text was updated successfully, but these errors were encountered:
We will review everything and get back to you, Please checkout our CODE OF CONDUCT, Thanks 😃
Sorry, something went wrong.
Hello @Barzan-Dawood, Thanks for your nice suggestion you can proceed. It's nice to introduce that feature. 💖
One small request, when you submit a pull request, pls send an updated apk to this mail [email protected].
It will easily help me to analyze the changes and quickly analyze your added feature and quickly merge your pull request.
Barzan-Dawood
No branches or pull requests
💥 Proposal
(A clear and concise description of what the proposal is.)
Have you read the Contributing Guidelines ?
(yes)
I have the idea of adding an icon to read the message for whoever the recipient sees from the sender !
in the form of the following:
//update read status of message
static Future updateMessageReadStatus(Message message) async {
firestore
.collection('chats/${getConversationID(message.fromId)}/messages/')
.doc(message.sent)
.update({'read': DateTime.now().millisecondsSinceEpoch.toString()});
}
if (widget.message.read.isNotEmpty)
const Icon(Icons.done_all_rounded, color: Colors.blue, size: 20),
The text was updated successfully, but these errors were encountered: