会议信息越界处理
This commit is contained in:
parent
307ba4f020
commit
0ec8987acc
|
|
@ -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),
|
||||||
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue