MediaSFU React Native
    Preparing search index...

    Function meetingStillThere

    • Handles the "still there?" meeting check by updating the visibility of the confirmation modal.

      Parameters

      • options: MeetingStillThereOptions

        The options for the meeting still-there check.

        • updateIsConfirmHereModalVisible: (isVisible: boolean) => void

      Returns Promise<void>

      A promise that resolves when the modal visibility is updated.

      const options = {
      updateIsConfirmHereModalVisible: (isVisible) => console.log(`Modal visibility: ${isVisible}`),
      };

      await meetingStillThere(options);
      // Output:
      // "Modal visibility: true"