How to check the camera status of each user in session?

How to get Camera Status?:

How can we check the camera status of each user to know whether their camera is on or off, so that when the camera is off, we can display an icon and the user’s name instead?

Description
I used in ZoomView

React Native Video SDK version?
@zoom/react-native-videosdk”: “^1.11.0”

Hi @sanchai you can listen for the onUserVideoStatusChanged event:

  zoom.addListener(EventType.onUserVideoStatusChanged, async (event) => {
      const { changedUsers } = event;
      changedUsers.forEach((user) => {
        console.log(user.videoStatus.isOn())
      })
    });