From b46509deefac38dd9aa767e27e814902da7c39be Mon Sep 17 00:00:00 2001 From: MaviaZindani <155289193+MaviaZindani@users.noreply.github.com> Date: Mon, 29 Dec 2025 22:14:53 -0800 Subject: [PATCH] Display message timestamp in chat bubble Added a timestamp display for the chat message. --- lib/src/widgets/chat_bubble_widget.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/src/widgets/chat_bubble_widget.dart b/lib/src/widgets/chat_bubble_widget.dart index a825d43f..cd4dacc9 100644 --- a/lib/src/widgets/chat_bubble_widget.dart +++ b/lib/src/widgets/chat_bubble_widget.dart @@ -21,6 +21,7 @@ */ import 'package:chatview_utils/chatview_utils.dart'; import 'package:flutter/material.dart'; +import 'package:intl/intl.dart'; import '../extensions/extensions.dart'; import '../models/config_models/feature_active_config.dart'; @@ -312,6 +313,10 @@ class _ChatBubbleWidgetState extends State { onMaxDuration: _onMaxDuration, ), ), + Text( + DateFormat('hh:mm a').format(widget.message.createdAt), + style: TextStyle(fontSize: 10, color: Colors.grey), +) ], ); }