Scott P.

Results 18 comments of Scott P.

It's possible to do this without needing a PR or any modification to the library using a key rename function. Simply add your commands in object format - e.g.; var...

Functional components should use the `useState` hook instead

> How is this "monkey patch" used? You paste the code at the top of the file for the component where you're using the action button

I've recently built an Expo EAS config plugin for this library: https://github.com/chronsyn/react-native-keyevent-expo-config-plugin

@lukadriel7 @sebas5384 @danilowoz Just curious if anyone made any progress with this. I'm having the issue that my data is persisting in AsyncStorage as expected, but the value of the...

Not sure if this is an issue still, but consider switching to the updated community library `@react-native-async-storage/async-storage`. The API for the libraries has changed over recent years, and Apollo client...

With `"@react-native-async-storage/async-storage": "^1.14.1"`, I use this as my Supabase context wrapper: ```ts import React, { FC } from "react"; import AsyncStorage from "@react-native-async-storage/async-storage"; import { SupabaseContextProvider as SBCP } from...

I've been attempting to get this working today, and I made a bit of progress: - Use expo's `AuthSession.startAsync` pointing towards `https://.supabase.co/auth/v1/authorize?provider=${provider}` (where `provider` is one of the providers supported...

> So after a bit of a wild goose chase around the moving parts here I've rm -rf'd my earlier posts since they are pointless 🤣...and come up with a...

> Just tested the approach with github provider + expo go, it worked as well. It took me a bit of time to understand how to glue all the things...