From 79d8d0a43714a36978796a3f212c5f0dd3e64ec0 Mon Sep 17 00:00:00 2001 From: fuenmao <980740792@qq.com> Date: Tue, 17 Dec 2024 13:56:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=AC=E7=AD=92=E5=92=8C=E4=BC=9A=E8=AE=AE?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=B5=AE=E5=B1=82=EF=BC=8C=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E8=A6=86=E7=9B=96=E5=8C=BA=E5=9F=9F=E5=8F=AF=E4=BB=A5=E5=85=B3?= =?UTF-8?q?=E9=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lib/pages/metting/meeting_main_view.dart | 34 ++++++++++++++----- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/wgshare/lib/pages/metting/meeting_main_view.dart b/wgshare/lib/pages/metting/meeting_main_view.dart index ba406bd..8722e15 100644 --- a/wgshare/lib/pages/metting/meeting_main_view.dart +++ b/wgshare/lib/pages/metting/meeting_main_view.dart @@ -742,9 +742,15 @@ class MeetingMainPageState extends State { ), ), Expanded( - child: Container( - color: ColorUtil.Color_57_57_57_08, - )) + child: GestureDetector( + child: Container( + color: ColorUtil.Color_57_57_57_08, + ), + onTap: (){ + logic.changeMeetingInfoState(false); + }, + ) + ) ], ), ); @@ -757,9 +763,14 @@ class MeetingMainPageState extends State { child: Column( children: [ Expanded( - child: Container( - color: ColorUtil.Color_57_57_57_08, - )), + child: GestureDetector( + child: Container( + color: ColorUtil.Color_57_57_57_08, + ), + onTap: (){ + logic.changeMeetingAudioState(false); + }, + )), Container( color: ColorUtil.Color_57_57_57_08, child: Container( @@ -777,9 +788,14 @@ class MeetingMainPageState extends State { ), ), Expanded( - child: Container( - color: ColorUtil.Color_57_57_57_08, - )) + child: GestureDetector( + child:Container( + color: ColorUtil.Color_57_57_57_08, + ), + onTap: (){ + logic.changeMeetingAudioState(false); + }, + )) ], ), );