听筒和会议信息浮层,点击覆盖区域可以关闭
This commit is contained in:
parent
a113684567
commit
79d8d0a437
|
|
@ -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);
|
||||||
|
},
|
||||||
))
|
))
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue