Stepan Parunashvili
Stepan Parunashvili
hey @matiosfree Could you tell us more about what you are trying to do? You have indeed come across a tricky issue -- exposing handleBeforeInput during composition could be tricky,...
Hey @nsadeh I _think_ I am experiencing the same problem. Noob question: how did you force the call to timeout?
Hey @p-syche, sure thing! Admittedly a bit unique, but here's one: ``` function List({activeItemId: trailingActiveItemId}) { const [activeItemId, setActiveItemId] = useState(trailingActiveItemId); const listItems = listFromItemId(activeItemId); useEffect(() => { if (activeItemId...
@osdnk do you mind linking to the fix that you made in the main repo?
In order for me to fix this, I had to follow @kanavi9527 idea, to have a new set of points, where the y value was 0. Here's a quick "hacking...
Very weird, I was able to hack around this, by simply "copying" the last point, and pushing it onto the list. ``` let ps = days .map((date) => ({ x:...
Can confirm I am seeing this too with the native SafeAreaView. It's weird that it happens intermittently Initial load: then insets applied: which causes a flicker: https://user-images.githubusercontent.com/984574/145834742-f1994d48-d158-48ae-9d17-4a21d4e07c9c.mov
FWIW, I've been using the same workaround as @Rotemy.
hey @wanstan a PR for this would be super appreciated! :) Otherwise will go ahead and make a diff myself in the next few days. Thank you for the ping
Thanks for the thorough answer @t9md ! If we have things in cmd + shift + p it's awesome! Here's a weird thing: When I open cmd + shift +...