Rafael

Results 12 comments of Rafael

Same here. I'm using [Image.getSize()](http://reactnative.dev/docs/image.html#getsize) to preload/cache images for now.

Same here. Started happening after I updated from 2.xx. I've only been able to reproduce it on Android 28 (the callback is correctly called on Android >= 29 & iOS)....

> @sekizlipenguen @Janak-Nirmal @arhmnsh What do you want to do with the video file? > > * Play it in your app? (Content URI will do for that) > *...

@UmarFarooqCA What we're doing is checking if the URI of the file starts with `content://`, if it does we use `RNFS` to create a temporary copy of that file. We...

@UmarFarooqCA No worries! Here's the piece of code we use in case it helps: ``` if (path.startsWith('content://')) path = await copyVideo(path, fileName); // copyVideo is this export async function copyVideo(uri,...

@stitesExpensify Which of one of these we want to do? 1. Make emojis bigger in all contexts, but single emojis should still be even bigger. 2. Make emojis in all...

Thanks @jboniface. If we end up following the original spec I think a good proposal would be 1. Modify our `ReportActionItemFragment` of type `COMMENT` to check if our `fragment.text` has...

I was having the same problem when updating from react-native 0.67.5 -> 0.72.3 using mmkv 0.8.0. The problem on my case was that even thought I had `ndkVersion = "23.1.7779620"`...