Daniel Alarcon

Results 10 comments of Daniel Alarcon

This MR could be merged easily, we just need @kevva pressing merge 😛

Could you check this MR @kevva? 😊

> I have been working on demos for an upcoming medium article on React Native TV user input. As part of this work, I found that there are issues on...

I am having the exact same issue as @ramiro-r. My project is using `[email protected]`

Hi @douglowder, sorry for the late response, here it's the [link](https://github.com/danychi/tvfocus-guide-bug) to the repository where you can reproduce the bug. **tvOS** On tvOS the `TVFocusGuideView` works only after you focus...

I had exactly the same issue, I solved it by: ```js const icoMoonConfig = require('./path-to-your-ico-moon-config.json'); const Icon = createIconSetFromIcoMoon(icoMoonConfig); // This step is essencial Icon.loadFont(); ```

I had exactly the same issue, I solved it by: ```js const icoMoonConfig = require('./path-to-your-ico-moon-config.json'); const Icon = createIconSetFromIcoMoon(icoMoonConfig); // This step is essencial Icon.loadFont(); ```

I am having the same issue as @aalmeidatw. Does the commit f88dccd82edf567b3ca799651f2516f727bc64c0 fix the issue? That brings to the next question, will this commit be merged soon? 🤔

@sebasg0 I think you can fix this by setting the destinations with a delay of 1ms ```ts const [setDestinations, destinations] = useState([]); useEffect(() => { setTimeout(() => setDestinations(...), 1); },[]);...

Probably we need a fix like this on this [file](https://github.com/danychi/react-native-tvos/blob/24db404ce5cfcad6f6ace015d7ba86f458f724fe/ReactAndroid/src/main/java/com/facebook/react/modules/core/ReactAndroidHWInputDeviceHelper.java#L112) ```java // Simple implementation of long press detection if ((eventKeyAction == KeyEvent.ACTION_DOWN) && isSelectOrDPadEvent && mLastKeyDownTime == 0) { //...