Skip to content

Manojkumar-Ainqa/react-native-jitsi-meet-with-options

 
 

Repository files navigation

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: '[email protected]',
      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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 78.4%
  • Objective-C 17.2%
  • JavaScript 3.0%
  • Ruby 1.4%