From 0ec8987acce3b16d4012779c632e79bee141bdf4 Mon Sep 17 00:00:00 2001 From: fuenmao <980740792@qq.com> Date: Mon, 6 Jan 2025 09:43:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=9A=E8=AE=AE=E4=BF=A1=E6=81=AF=E8=B6=8A?= =?UTF-8?q?=E7=95=8C=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lib/pages/metting/meeting_main_view.dart | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/wgshare/lib/pages/metting/meeting_main_view.dart b/wgshare/lib/pages/metting/meeting_main_view.dart index e1f7648..c5eff3c 100644 --- a/wgshare/lib/pages/metting/meeting_main_view.dart +++ b/wgshare/lib/pages/metting/meeting_main_view.dart @@ -738,12 +738,18 @@ class MeetingMainPageState extends State { fontWeight: FontWeight.w500, color: ColorUtil.Color_134_134_134), ), - Text( - UserStore.to.userInfoEntity.value!.userName, - style: TextStyle( - fontSize: 12.sp, - color: ColorUtil.Color_202_202_202, - fontWeight: FontWeight.w500), + Container( + width: 100, + margin: const EdgeInsets.only(left: 6), + child: Text( + UserStore.to.userInfoEntity.value!.userName, + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 12.sp, + color: ColorUtil.Color_202_202_202, + fontWeight: FontWeight.w500), + ), ) ], ),