0 purchases
bspoke jitsi web plugin
jitsi_meet_web #
A Jitsi Web implementation
This is a fork from https://github.com/gunschu/jitsi_meet
DO NOT USE IT UNLESS YOU KNOW WHAT YOU ARE DOING. THIS IS MODIFIED TO USE FOR vhglobal.org ONLY.
Getting Started #
This project implements a Jistis Plugin for WEB using JitsiMeetExternalAPI. You can find more information in https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-iframe.
The plugin allows you to insert a meeting in a flutter web project, this first version has the following characteristics:
Set the meeting view as a child for a flutter component allowing sizing the meeting section
Set configurations according to Jitsi documentation, except onload callback
Set listeners to meeting events
Send commands to meetting
To implement you need to include Jitsi Js library in the index.html of web section
<script src="https://meet.jit.si/external_api.js" type="application/javascript"></script>
copied to clipboard
Example:
<body>
<!-- This script installs service_worker.js to provide PWA functionality to
application. For more information, see:
https://developers.google.com/web/fundamentals/primers/service-workers -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker.register('/flutter_service_worker.js');
});
}
</script>
<script src="https://meet.jit.si/external_api.js" type="application/javascript"></script>
<script src="main.dart.js" type="application/javascript"></script>
</body>
</html>
copied to clipboard
See usage example in jitsi_meet plugin
Hosted example on firebase
https://jitsiflutter.web.app/#/
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.