会议信息越界处理

This commit is contained in:
fuenmao 2025-01-06 09:43:46 +08:00
parent 307ba4f020
commit 0ec8987acc
1 changed files with 12 additions and 6 deletions

View File

@ -738,12 +738,18 @@ class MeetingMainPageState extends State<MeetingMainPage> {
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
color: ColorUtil.Color_134_134_134), color: ColorUtil.Color_134_134_134),
), ),
Text( Container(
UserStore.to.userInfoEntity.value!.userName, width: 100,
style: TextStyle( margin: const EdgeInsets.only(left: 6),
fontSize: 12.sp, child: Text(
color: ColorUtil.Color_202_202_202, UserStore.to.userInfoEntity.value!.userName,
fontWeight: FontWeight.w500), maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontSize: 12.sp,
color: ColorUtil.Color_202_202_202,
fontWeight: FontWeight.w500),
),
) )
], ],
), ),