custom_omni_jitsi_meet_web_plugin

Creator: coderz1093

Last updated:

0 purchases

custom_omni_jitsi_meet_web_plugin Image
custom_omni_jitsi_meet_web_plugin Images

Languages

Categories

Add to Cart

Description:

custom omni jitsi meet web plugin

omni_jitsi_meet_web_plugin #
A Jitsi Web implementation
Getting Started #
This project implements a Jitsi 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
Notes: #
This library is based on 'jitsi meet' from unverified uploader.
Original reference: https://pub.dev/packages/jitsi_meet

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.