bspoke_jitsi_web_plugin 0.0.4 copy "bspoke_jitsi_web_plugin: ^0.0.4" to clipboard
bspoke_jitsi_web_plugin: ^0.0.4 copied to clipboard

Platformweb

A common plugin for the custom jitsi-meet web and mobile implementation for Virtual Hospital.

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>

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>

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.

0
likes
130
pub points
0%
popularity

Publisher

unverified uploader

A common plugin for the custom jitsi-meet web and mobile implementation for Virtual Hospital.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

bspoke_jitsi_platform_interface, flutter, flutter_web_plugins, js, meta

More

Packages that depend on bspoke_jitsi_web_plugin