diff --git a/bytedesk_kefu/lib/ui/chat/widget/message_widget.dart b/bytedesk_kefu/lib/ui/chat/widget/message_widget.dart index b1444d4..476be6f 100755 --- a/bytedesk_kefu/lib/ui/chat/widget/message_widget.dart +++ b/bytedesk_kefu/lib/ui/chat/widget/message_widget.dart @@ -241,6 +241,7 @@ class MessageWidget extends StatelessWidget { child: Text( title, maxLines: 2, + style: TextStyle(color: Color(0xFF333333)), overflow: TextOverflow.ellipsis, ), ), @@ -253,15 +254,15 @@ class MessageWidget extends StatelessWidget { overflow: TextOverflow.ellipsis, ), ), - // Container( - // margin: EdgeInsets.only(top: 10, left: 8), - // child: Text( - // '$content', - // style: TextStyle(fontSize: 12, color: Colors.grey), - // maxLines: 1, - // overflow: TextOverflow.ellipsis, - // ), - // ) + Container( + margin: EdgeInsets.only(top: 10, left: 8), + child: Text( + '$content', + style: TextStyle(fontSize: 12, color: Colors.grey), + maxLines: 1, + overflow: TextOverflow.ellipsis, + ), + ) // Gaps.vGap4, ], ),