We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80456ce commit b46509dCopy full SHA for b46509d
lib/src/widgets/chat_bubble_widget.dart
@@ -21,6 +21,7 @@
21
*/
22
import 'package:chatview_utils/chatview_utils.dart';
23
import 'package:flutter/material.dart';
24
+import 'package:intl/intl.dart';
25
26
import '../extensions/extensions.dart';
27
import '../models/config_models/feature_active_config.dart';
@@ -312,6 +313,10 @@ class _ChatBubbleWidgetState extends State<ChatBubbleWidget> {
312
313
onMaxDuration: _onMaxDuration,
314
),
315
316
+ Text(
317
+ DateFormat('hh:mm a').format(widget.message.createdAt),
318
+ style: TextStyle(fontSize: 10, color: Colors.grey),
319
+)
320
],
321
);
322
}
0 commit comments