Felipe S. Santos
Felipe S. Santos
on `metro.config.js` I just included the babel plugin and it worked for me ```javascript module.exports = { transformer: { getTransformOptions: async () => ({ transform: { experimentalImportSupport: false, inlineRequires: true,...
@grit96 For me it also works on release (archiving). I'm using `"react-native": "0.66.1"` and `"color": "^4.0.1"` BTW. Don't forget to `yarn add @babel/plugin-proposal-numeric-separator -D`
Are you using the library with something like `react-native-pager-view` lib as showed [here](https://github.com/callstack/react-native-pager-view/blob/master/example/src/BasicPagerViewExample.tsx)? I am using it, and that issue happen just if I move `line 10` to after the...
I added back the namespace to AndroidManifest to keep the previous RN compatibility https://github.com/react-native-community/discussions-and-proposals/issues/671#issuecomment-1597386954
add back namespace to AndroidManifest for compatibility with previous RN versions https://github.com/react-native-community/discussions-and-proposals/issues/671#issuecomment-1597386954
Thank you @gkasdorf for quickly find the root cause! Well, I created a PR migrating fast-image to expo-image for our app, as we use a wide type of images I...
Hey guys... I created a few variations for that image using https://ezgif.com/optiwebp online tool: - Removing half of the frames - Optimize (compress) to 1% of quality - Cropping it...
Hello @tsapeta , I was wondering if there have been any updates regarding this issue. It appears that even after applying a patch to consistently use SDImageWebPCoder (which is also...
AWebP Coder has a [limitation](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#awebp-coder), I feel Expo team should remove it definitely from Expo-Image > Note: > > The AWebP render logic from Apple's ImageIO is a little different...
@tsapeta and @gkasdorf We found something also odd. The issue is if we render the animated WebP image inside of a `View,` we cannot define that `View` width as less...