Efra Espada

Results 45 comments of Efra Espada

That's right. I'm gonna check it on more android devices. I'm doing more tests to see if the problem appears again.

@saibotma Same problem here. I am just joining a meet and when pressing the hang-up button, the trigger doesn't fire.

@Gaurav-CareMonitor @saibotma ```dart await JitsiMeetWrapper.joinMeeting( options: JitsiMeetingOptions( roomNameOrUrl: url, subject: subject, token: token, isAudioOnly: !video, isAudioMuted: false, isVideoMuted: false, featureFlags: { FeatureFlag.isCallIntegrationEnabled: false, FeatureFlag.isInviteEnabled: false, FeatureFlag.isChatEnabled: false, FeatureFlag.isWelcomePageEnabled: false, FeatureFlag.isCalendarEnabled:...

I've integrated Jitsi by web for desktops: a new window that it's closed automatically when the user ends his session. @saibotma do you consider it could be a friendly solution...

Yep, it is simple, with `desktop_webview_window`: ```dart var room = '$domain/${meet.hash}'; room += '#userInfo.displayName="${user.name}"'; room += '&userInfo.email="${user.email}"'; room += '&config.subject="$subject"'; room = Uri.encodeFull(room); Webview desktopWebview = await WebviewWindow.create( configuration: CreateConfiguration(...