jitsi / jitsi-meet-flutter-sdk

Jitsi Meet plugin for Flutter
Apache License 2.0
41 stars 32 forks source link

External meeting window and not closed after terminating #92

Open a7mdragab1 opened 1 week ago

a7mdragab1 commented 1 week ago

Dears, I have aproblem with the package!

when upgrading to any version more than jitsi_meet_flutter_sdk: 0.4.2

The meeting is opened in a separate screen, but when the meeting ends, the screen is not removed from the background. If clicked, it reopens the meeting.

Look at this scenario image

So, I am stuck at this version.

This is the basic example in docs

var jitsiMeet = JitsiMeet();
var options = JitsiMeetConferenceOptions(
  serverURL: "https://meet.jit.si",
  room: "jitsiIsAwesomeWithFlutter",
  configOverrides: {
    "startWithAudioMuted": false,
    "startWithVideoMuted": false,
    "subject": "Jitsi with Flutter",
  },
  featureFlags: {"unsaferoomwarning.enabled": false},
  userInfo: JitsiMeetUserInfo(displayName: "Flutter user", email: "user@example.com"),
);
jitsiMeet.join(options);

Even I tried serverURL with my url, both have the same behavior

Calinteodor commented 2 days ago

I managed to test using the below configuration and an Android 14 device

image

and the sample app right here https://github.com/jitsi/jitsi-meet-sdk-samples/tree/master/flutter.

I customised prosody to accept the end conference feature and I am unable to encounter what you are saying.

When I end meeting for all, all participants are thrown out of the meeting view, and I, the moderator, from flutter, get an OK dialog and when I press it I navigate back to the main view. No other views remain open in the background.

Maybe try to cover the steps that I mentioned above and see if you get the same result with your customised server.