eorhan / react-native-jitsi-meet-with-options

React native wrapper for Jitsi Meet SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Important

Do not use this package in your project. Download and get ideas from this repository only if you want to use custom options in your Jitsi meet in react native application.

File changes:

  1. RNJitsiMeetModule.java
  2. RNJitsiMeetViewManager.m
  3. index.ios.js
  4. index.android.js

react-native-jitsi-meet

See the main package and install it from github

Installation: https://github.com/skrafft/react-native-jitsi-meet

Just for inspiration

componentDidMount() {
  setTimeout(() => {
    const options = {
      room: 'String',
      token: 'String',
      audioMuted: false,
      audioOnly: false,
      videoMuted: false,
      subject: 'String',
    };
    const meetFeatureFlags = {};
    const url = 'https://meet.jit.si/helloRoom'
    const userInfo = {
      displayName: 'User',
      email: 'user@example.com',
      avatar: 'https:/gravatar.com/avatar/abc123',
    };
    JitsiMeet.call(url, userInfo, options, meetFeatureFlags);
    /* You can also use JitsiMeet.audioCall(url) for audio only call */
    /* You can programmatically end the call with JitsiMeet.endCall() */
  }, 1000);
}

Useful Links

All Options : https://pub.dev/packages/jitsi_meet

About

React native wrapper for Jitsi Meet SDK

License:Apache License 2.0


Languages

Language:Java 78.3%Language:Objective-C 17.2%Language:JavaScript 3.0%Language:Ruby 1.4%