听筒和会议信息浮层,点击覆盖区域可以关闭

This commit is contained in:
fuenmao 2024-12-17 13:56:47 +08:00
parent a113684567
commit 79d8d0a437
1 changed files with 25 additions and 9 deletions

View File

@ -742,9 +742,15 @@ class MeetingMainPageState extends State<MeetingMainPage> {
), ),
), ),
Expanded( Expanded(
child: GestureDetector(
child: Container( child: Container(
color: ColorUtil.Color_57_57_57_08, color: ColorUtil.Color_57_57_57_08,
)) ),
onTap: (){
logic.changeMeetingInfoState(false);
},
)
)
], ],
), ),
); );
@ -757,8 +763,13 @@ class MeetingMainPageState extends State<MeetingMainPage> {
child: Column( child: Column(
children: [ children: [
Expanded( Expanded(
child: GestureDetector(
child: Container( child: Container(
color: ColorUtil.Color_57_57_57_08, color: ColorUtil.Color_57_57_57_08,
),
onTap: (){
logic.changeMeetingAudioState(false);
},
)), )),
Container( Container(
color: ColorUtil.Color_57_57_57_08, color: ColorUtil.Color_57_57_57_08,
@ -777,8 +788,13 @@ class MeetingMainPageState extends State<MeetingMainPage> {
), ),
), ),
Expanded( Expanded(
child: Container( child: GestureDetector(
child:Container(
color: ColorUtil.Color_57_57_57_08, color: ColorUtil.Color_57_57_57_08,
),
onTap: (){
logic.changeMeetingAudioState(false);
},
)) ))
], ],
), ),