Alexander Vitanov

Results 8 comments of Alexander Vitanov

Increasing deployment targets to 11.0 on both the main project AND the share extension finally worked for me

You can try this: ``` const [dragging, setDragging] = useState(false) ... setDragging(true)} onDragRelease={() => setDragging(false)} /> ```

@gabrielbull I added @fungilation as a collaborator. Thanks!

@fungilation How many PRs are fixed in your fork?

As a temp workaround I went into `node_modules/react-native-snap-carousel` and replaced all appearances of `ViewPropTypes` and `ViewPropTypes.style` with `PropTypes.any` then patching using `npx patch-package react-native-snap-carousel` For example inside `node_modules/react-native-snap-carousel/src/pagination/PaginationDot.js` replaced `ViewPropTypes...

I keep having this problem with 1.2.4-0 in production

In case you are using RN +0.64: 1. navigate to `node_modules/react-native-fast-image/dist/index.js` 2. replace the file content with the following: ``` import React, { forwardRef, memo } from 'react' import {...