cloudorbush

Results 75 comments of cloudorbush

Yes that's exactly it! 🙂 Plus with a mousewheel listener you would get the benefit of being able to swipe on the mouse trackpad of a laptop for example.

@kiwicopple thanks. I'm going to try to submit a pull request. I really want to use supabase in my react native app.

Temporary fix: Instead of redirecting the user to `appname://`, redirect them to your website and put this in a script tag: ```javascript const url = window.location.href; const split = url.split('#');...

> Did this ever get solved @10000multiplier? @scarsam No I'm still redirecting to my website and manually transforming the url there.

auto asset optimization would be a killer feature

@greggman awesome! Any chance for a react-native example?

Ah, it took me a while to realize async function cannot be put inside `runOnJS`. I was calling a `mutateAsync` function from `react-query` to make a post request when swiping...

Looks like we may have to take up this effort ourselves 😁

@elliottkember can we write code with the same brevity that addresses your concerns? **Update**: checkout this code https://github.com/enzomanuelmangano/animate-with-reanimated/blob/main/04-pinch-gesture-handler-basics/App.tsx

@elliottkember indeed, v2 of `react-native-gesture-handler` just came out with a rewrite of the old API! You may want to get familiar with some of the examples: https://github.com/software-mansion/react-native-gesture-handler/tree/master/example/src/new_api. I'm not in...