Ovidiu Cristescu
Ovidiu Cristescu
I also have issues with text inputs. They are not focusable. Can be reproduced on Samsung real devices using Tamagui Sheet with Text Inputs and Buttons inside it: https://github.com/tamagui/tamagui/issues/3288 Disabling...
@coofzilla Indeed, this is an ugly one... Not sure if I can find a good fix, but perhaps we can workaround it. I'm still looking into it. Will let you...
@coofzilla What do you think about the following fix? The `parentListRef` would accept either FlatList or Scrollview refs. Internally, it would call `parentListRef?.current?.setNativeProps({scrollEnabled: boolean});` in order to avoid this issue....
> Just to clarify, would this approach work the same way for VideoPlayers inside FlatLists or ScrollViews that are vertical? Essentially, the same snippet you provided, but without horizontal. @coofzilla...
@coofzilla The branch is updated. The final implementation is like this: ```tsx export const VideoList = () => { const flatListRef = useRef(null); const [scrollEnabled, setScrollEnabled] = useState(true) return (...
@coofzilla I can easily add some opacity feedback when the button is being pressed by using the `` API from `react-native`. I don't understand how/why the the play button scales...
@coofzilla Hopefully by the ned of the month we will have something. :( Sorry for the delay
@coofzilla Oh wooow people have been complaining about it but I haven't been able to reproduce this. Really nice find!
You're so cool and you've been really helpful this year for us, but unfortunately the rule is that you have to contribute actively with code :( Your username needs to...
Honestly, I haven't thought about anything yet. The example app is actually the [expo-router-with-tv example]( https://github.com/expo/examples/tree/master/with-router-tv ) (which is better [described here](https://docs.expo.dev/guides/building-for-tv/#quick-start)) with some small changes to work in a...