AgoraIO-Community / VideoUIKit-ReactNative

A React Native package to simply integrate Agora Video Calling or Live Video Streaming to your app with just a few lines of code.
MIT License
93 stars 43 forks source link

onUserJoined callback not working? #143

Closed SanghaPreet closed 11 months ago

SanghaPreet commented 1 year ago

I am following documentation, as per which we have callbacks but I need to know which userJoined, cannot detect this:

Any callback I can use here that can help in knowing which user has joined in: const rtcCallbacks = { EndCall: () => setVideoCall(false), };

srinath116 commented 1 year ago

@SanghaPreet you can add a callback on userJoined

 userJoined: ev => {
      console.log(ev, 'userJoined');
    },