hatem-72
hatem-72
Hi, I also noticed a significant spike of crash after upgrading this library to 4.3.0. I also use the `BlurTransformation` inside my app. In fact I guess we are concerned...
Good catch. Personally I had no reference to luxon in my error logs when running `pod install`. So it took me a while to catch the culprit. But indeed `luxon...
In fact problem did not appear in [`v3.0.1`](https://github.com/moment/luxon/releases/tag/3.0.1) but in [`v2.5.0`](https://github.com/moment/luxon/releases/tag/2.5.0). You can check [changes here](https://github.com/moment/luxon/compare/2.4.0...2.5.0). I guess it comes from the `Support for ESM-style node imports` part.
Exporting `./package.json` inside luxon `package.json` seems to fix the issue. I thought of doing this after running `yarn react-native config`. I will submit a PR. ```diff "exports": { ".": {...
For your usage I think simply declaring your own `react-native-fast_image.d.ts` at the app level should be fine. ```ts declare module 'react-native-fast_image' { // Paste here the content of node_modules/react-native-fast_image/dist/index.d.ts }...
Overall, from what you say, I think you have a concern about sharing responsibility in your monorepo. If images-tools package is the only consumer for react-native-library, why do you need...
I am not sure to understand. Do you have example of import statements from RNFI you are using inside you app packages ? I mean if your image component is...
[React native upgrade helper](https://react-native-community.github.io/upgrade-helper/?from=0.69.5&to=0.70.0) indications seem unclear to me as well. If I delete the `REACT_NATIVE_PATH` lines ```diff - REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; ``` They are added again automatically on next...
Some of our users are affected as well. I think I managed to reproduce it, at least on IOS: Activate the `Reduce Motion` accessibility setting in your Iphone, restart your...
For the moment, I've only disabled the opening animation for users with _reduced motion_ : ```ts import { useReducedMotion } from 'react-native-reanimated'; import { BottomSheetModal } from '@gorhom/bottom-sheet'; // ......