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

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: Container( child: GestureDetector(
color: ColorUtil.Color_57_57_57_08, child: Container(
)) color: ColorUtil.Color_57_57_57_08,
),
onTap: (){
logic.changeMeetingInfoState(false);
},
)
)
], ],
), ),
); );
@ -757,9 +763,14 @@ class MeetingMainPageState extends State<MeetingMainPage> {
child: Column( child: Column(
children: [ children: [
Expanded( Expanded(
child: Container( child: GestureDetector(
color: ColorUtil.Color_57_57_57_08, child: Container(
)), 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,
child: Container( child: Container(
@ -777,9 +788,14 @@ class MeetingMainPageState extends State<MeetingMainPage> {
), ),
), ),
Expanded( Expanded(
child: Container( child: GestureDetector(
color: ColorUtil.Color_57_57_57_08, child:Container(
)) color: ColorUtil.Color_57_57_57_08,
),
onTap: (){
logic.changeMeetingAudioState(false);
},
))
], ],
), ),
); );