Aryk Grosz
Aryk Grosz
> FYI, we've moved to `react-native-qrcode-svg`. This one is dead. Can someone put a message in the readme?
Hey guys, just bumping this...seems like a pretty easy low risk fix. Can we get this one-line changed added to the next minor update?
Also...they will not maintain expo-branch with EAS build and no one has made a config plugin for it yet (it's outside of my abilities currently and don't have anyone to...
Just curious if this feature or something similar made its way into the library. I see there's been no activity for 6 months.
Got it, I implemented caching of the signed s3 urls on the server side. I have it set to cache for 5 days whereas the urls are good for 7...
@ewal > I'm experimenting with hiding the tab bar when opening the sheet. In the new version of react navigation (v5) it's possible to set options from a screen on...
This is what I did: https://gist.github.com/Aryk/132a746976d48c9959a9eef605217361 * Store list of modals you want to use in mobx array (or any other storage system you want to use) * ` const...
No monkey patching required: ```ruby def client @client ||= Exponent::Push::Client.new(http_client: TyphoeusNoSSLCheck) end ```
@asanger FYI I made a fork that allows to easily add the nossl check without needing to pass in a class: https://github.com/expo-community/expo-server-sdk-ruby/issues/43
``` // Authenticate the network into the current app, save the token for future API calls. setAuthorizationHeader(token: string) { const env = getEnv(self); if (token) { // https://github.com/mobxjs/mst-gql/issues/82#issuecomment-535046885 env.gqlHttpClient.setHeaders({authorization: token});...