Pin Participants
In any meeting with large number of participants, if you want to show only one or two participant(s) on main screen then you can pin that perticipants so that viewers can only focus upon that participants only.
This guide will provide an overview of how to pin or unpin any participants in a meeting.
Participant Pin State
- JavaScript
- React
- ReactNative
- Android
- IOS
- Flutter
const { cam, share } = participant?.pinState;
const { cam, share } = participant?.pinState;
COMING SOON!
COMING SOON!
COMING SOON!
COMING SOON!
pin()
and unpin()
functions will take string
or null
as an argument. Pin will be effective for both webcam and screenshare of that participant.
Suppose you want to pin or unpin only webcam of that participant then you can pass CAM
, else if you want to pin or unpin only screenshare of that participant then you can pass SHARE
.
You can also pass SHARE_AND_CAM
if you want to pin
or unpin
both webcam and screenshare media of that user, or passing null
or nothing as an argument will also work in the same way.
If any participant's webcam is pinned but not screenshare, then calling pin("SHARE")
the new pinState of that participant will be { cam: true, share: true }
.
Pin And Unpin a Participant
- JavaScript
- React
- ReactNative
- Android
- IOS
- Flutter
const onPress = () => {
// Pin both webcam and screenshare of that participant
participant.pin();
// Pin webcam of that participant
participant.pin("CAM");
// Pin screenshare of that participant
participant.pin("SHARE");
//
// Unpin both webcam and screenshare of that participant
participant.unpin();
// Unpin webcam of that participant
participant.unpin("CAM");
// Unpin screenshare of that participant
participant.unpin("SHARE");
};
const onPress = () => {
// Pin both webcam and screenshare of that participant
participant.pin();
// Pin webcam of that participant
participant.pin("CAM");
// Pin screenshare of that participant
participant.pin("SHARE");
//
// Unpin both webcam and screenshare of that participant
participant.unpin();
// Unpin webcam of that participant
participant.unpin("CAM");
// Unpin screenshare of that participant
participant.unpin("SHARE");
};
COMING SOON!
COMING SOON!
COMING SOON!
COMING SOON!
pin-state-changed Event
Whenever any participant got pinned or unpinned by any participant, pin-state-changed
event will be triggered.
- JavaScript
- React
- ReactNative
- Android
- IOS
- Flutter
meeting.on("pin-state-changed", ({ participantId, state, pinnedBy }) => {
console.log({
participantId, // id of participant who were pinned
state, // { cam: true, share: true }
pinnedBy, // id of participant who pinned that participant
});
});
import { useMeeting } from "@videosdk.live/react-sdk";
/** useMeeting hooks events */
const {
/** Methods */
} = useMeeting({
onPinStateChanged: ({ participantId, state, pinnedBy }) => {
console.log({
participantId, // id of participant who were pinned
state, // { cam: true, share: true }
pinnedBy, // id of participant who pinned that participant
});
},
});
COMING SOON!
COMING SOON!
COMING SOON!
COMING SOON!
Got a Question? Ask us on discord