Daniel Mariño
Daniel Mariño
I am sure is being considered, but just in case: https://github.com/microsoft/react-native-windows > This repository adds support for the Windows 10 SDK, which allows you to build apps for all devices...
does it help to set the listeners on document 'load' event?
``` window.addEventListener('load', (event) => { // check if tizen global exists here }); ```
This does not work? ``` useEffect(() => { window.addEventListener('load', (event) => { console.log('page is fully loaded, use tizen object here'); var value = tizen.tvinputdevice.getSupportedKeys(); console.log(value); }); }, []); ```
How you installed react-native-video? Can you paste your renative.json file? Spoiler: react-native-video will not allow you to play Youtube videos AFAIK
Maybe you want to check this approach: https://surajmdurgad.medium.com/embedding-youtube-videos-in-a-react-native-app-8c556a18fd76
videoId can be easily extracted from url: https://www.youtube.com/watch?v=fTzSI_MY98o ?v={{THAT's THE ID}}
I think this is an old issue, but anyways: if it helps, I was having issues with 3.6.0 but changing this make it work: `#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000`...
btw, seems listening onSeeked event and setting document.querySelector('video').playbackRate = 1 is a hacky solution for this
@surajkumar-sk, totally agree with @joeyparrish, indeed the integration is even more tricky when speaking about fullscreen on iOS. Safari on mobile/ipad didn't allow to go fullscreen the same way other...