会议信息越界处理

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,
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),
),
)
],
),