fix(mobile-next): 会话姓名改为 16sp,字号只用 12/14/16/18
仅改 conversation_view.dart 会话姓名,去掉 17sp,改用 AppFont.body。 Co-authored-by: Cursor <cursoragent@cursor.com> Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
co-authored by
Cursor
multica-agent
parent
da9152d36b
commit
87a5930906
@@ -152,10 +152,15 @@ class ConversationPage extends StatelessWidget {
|
|||||||
children: [
|
children: [
|
||||||
ConstrainedBox(
|
ConstrainedBox(
|
||||||
constraints: BoxConstraints(maxWidth: 180.w),
|
constraints: BoxConstraints(maxWidth: 180.w),
|
||||||
child: logic.getShowName(info).toText
|
child: Text(
|
||||||
..style = Styles.ts_0C1C33_17sp
|
logic.getShowName(info),
|
||||||
..maxLines = 1
|
maxLines: 1,
|
||||||
..overflow = TextOverflow.ellipsis,
|
overflow: TextOverflow.ellipsis,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontSize: AppFont.body,
|
||||||
|
color: AppColors.textPrimary,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
const Spacer(),
|
const Spacer(),
|
||||||
logic.getTime(info).toText..style = Styles.ts_8E9AB0_12sp,
|
logic.getTime(info).toText..style = Styles.ts_8E9AB0_12sp,
|
||||||
|
|||||||
Reference in New Issue
Block a user