saibotma / jitsi_meet_wrapper

Jitsi Meet Plugin for Flutter. Wrapping JitsiMeetSDK for Android and iOS.
BSD 3-Clause "New" or "Revised" License
28 stars 61 forks source link

How do I close the jitsi view (or call the end call function to close the jitsi view) programmitically? #110

Closed isaanyoha closed 1 year ago

isaanyoha commented 1 year ago

How do I close the jitsi view (or call the end call function to close the jitsi view) programmitically?

Navigator.of(context).pop(); closes the main app's current page (not jitsi view), while SystemNavigator.pop() quits the main app. Again, JitsiMeet.closeMeeting() does not close the view either, just the meeting process alone

How do I do this, please. Thank you!

saibotma commented 1 year ago

Did you already try calling hangUp?

isaanyoha commented 1 year ago

Yeah!!! It works now. Thank you!