add datedivider builder

This commit is contained in:
Salvatore Giordano
2020-04-24 16:51:47 +02:00
parent c3a068a4b4
commit 9ec2b02a92
4 changed files with 47 additions and 44 deletions
+1 -1
View File
@@ -237,7 +237,7 @@ class _MessageWidgetState extends State<MessageWidget>
Widget _buildThreadIndicator(BuildContext context) {
if (widget.message?.replyCount != null && widget.message.replyCount > 0) {
return ReplyIndicator(
onTap: widget.isParent
onTap: !widget.isParent
? () {
widget.onThreadTap(widget.message);
}