Untitled

odi avatar
odi
plain_text
04/19/2023 12:45 PM
336 B
19
Indexable
const handleFullScreenToggle = async () => {
    if (videoRef.current) {
      try {
        await videoRef.current.presentFullscreenPlayer();
      } catch (error) {
        console.error('Error entering fullscreen mode:', error);
      }
    }
  };
Editor is loading...