feat: Enable screensharing on Mobile

This commit is contained in:
Christian Pauly 2022-05-01 12:18:25 +02:00
parent dd9adbcdb9
commit 7c97f07458

View File

@ -401,7 +401,8 @@ class _MyCallingPage extends State<Calling> {
//switchSpeakerButton, //switchSpeakerButton,
if (!voiceonly && !kIsWeb) switchCameraButton, if (!voiceonly && !kIsWeb) switchCameraButton,
if (!voiceonly) muteCameraButton, if (!voiceonly) muteCameraButton,
if (kIsWeb) screenSharingButton, if (PlatformInfos.isMobile || PlatformInfos.isWeb)
screenSharingButton,
holdButton, holdButton,
hangupButton, hangupButton,
]; ];