How to detect screen sharing when use Zoom UI Toolkit

Excuse me.

This library can support evert listener when user sharing this screen like Zoom Video SDK on React Native?

Code snippet on Zoom Video SDK on React Native

onst [isScreenShared, setIsScreenShared] = useState(false);

    const userShared = zoom.addListener(EventType.onUserShareStatusChanged, async (event) => {
      console.debug('event: ', event)
      switch (event.status) {
        case "ZoomVideoSDKShareStatus_Start":
          setIsScreenShared(true)
          break;
        case "ZoomVideoSDKShareStatus_Stop":
          setIsScreenShared(false)
          break;
        default:
          console.error(`ERROR: Something went wrong. event = ${event}`)
      }
    });
    listeners.current.push(userShared);


          <ZoomView
            style={styles.container}
            userId={user.userId}
            sharing={isScreenShared}
            fullScreen
            videoAspect={VideoAspect.PanAndScan}
          />

Edit: It’s on the feature roadmap now, but we don’t have a release date we can share right now.

This isn’t part of the supported event listener in the current version. I’ll discuss with the team to add this to the feature roadmap.