diff --git a/mobile-next/lib/pages/conversation/conversation_view.dart b/mobile-next/lib/pages/conversation/conversation_view.dart index 7eac892..a1d3100 100644 --- a/mobile-next/lib/pages/conversation/conversation_view.dart +++ b/mobile-next/lib/pages/conversation/conversation_view.dart @@ -152,10 +152,15 @@ class ConversationPage extends StatelessWidget { children: [ ConstrainedBox( constraints: BoxConstraints(maxWidth: 180.w), - child: logic.getShowName(info).toText - ..style = Styles.ts_0C1C33_17sp - ..maxLines = 1 - ..overflow = TextOverflow.ellipsis, + child: Text( + logic.getShowName(info), + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: const TextStyle( + fontSize: AppFont.body, + color: AppColors.textPrimary, + ), + ), ), const Spacer(), logic.getTime(info).toText..style = Styles.ts_8E9AB0_12sp,