Noitidart
Noitidart
Got a couple 503's but its much less then the many we used to get in past. ``` Expo responded with an error with status code 503: upstream connect error...
Got a buuuunch of the 503's just now: > Expo responded with an error with status code 503: upstream connect error or disconnect/reset before headers. reset reason: connection termination
These are some errors I have seen thrown by `sendPushNotificationAsync`. Does anyone know have any recommendations how to handle each one? Currently I only retry on the `TOO_MANY_REQUESTS` error, and...
Thanks @gilsonmandalogo !
In the RN version, which edge is always safe? Does it change as orientation changes?
I was hoping to support the minimum RN supports, which is 4.1 and up. Will this lib work in 4.1+ the same as it does in the latest android versions?
I think this speed is only an issue when in debug mode. When we make an APK https://facebook.github.io/react-native/docs/signed-apk-android.html i think its gone - im not sure just guessing. I really...
Thanks @flyingant ! The equations above allow us to use it just like we use CSS transitions. So it offers not only ease, but familiarity. We can specify: `linear`, `ease`,...
You have to download it first using anohter package. I use `react-native-fetch-blob`: ``` const { documentUrl, documentExt } = this.props; const res = await RNFetchBlob.config({ fileCache:true, appendExt:documentExt }).fetch('GET', documentUrl) .progress(...
This is also an issue in react-native because they use what-wg fetch. Is there a way to differentiate between timeout or offline? Currently both situation throw the same error which...