Samuel Newman

Results 198 comments of Samuel Newman

Thank you. I can produce a minimal reproduction if needed.

https://gfycat.com/briefelasticgermanwirehairedpointer Here's a screen recording of the `simple_orbit` example

Has there been any progress on this? I don't see the slate package in the repo anymore, is it still supported?

My mistake, I looked at `next` but not in `experimental`

Here's a gist for a patchfile that allows a "concurrency" option to be passed to the worker https://gist.github.com/mozzius/183203c6130d58a828c8bb4522321fba

Here's an 16.4 simulator - surprisingly, it's present here too. It's definitely still the autocorrect though - turning off "Auto-Correction" and "Predictive" fixes it. https://github.com/facebook/react-native/assets/10959775/40f03d5f-9721-4e4c-a59b-a4d53108af44

Please let me know if this was the actual problem that the issue was about - it didn't specify

> > Please let me know if this was the actual problem that the issue was about - it didn't specify > > I actually don't know why or when...

Back in draft until we can figure out utf8/utf16 codepoints slice issue

I abstracted this into a hook: ```tsx export function useUserRefresh(refetch: () => Promise) { const [refreshing, setRefreshing] = useState(false); const handleRefresh = useCallback(() => { setRefreshing(true); refetch().then(() => setRefreshing(false)); },...