GavinWang
GavinWang
I had the same issue too. In my project, the update works fine on the debug mode, but not working on the release mode, and I found out the problem...
> Is it okay to remove ReactNativeHostWrapper? > What did you replace it with, and were there any drawbacks? The react-native-code-push is the experimental feature for my project, so I...
I change the flex-direction to support RTL, I test the left/right buttons and the gesture, and they work fine. You can try v0.6.1, If there are any problems, please feel...
Do you use the class component? if you use `React.createRef()`, please try this: ``` class SwipeItemWrapper extends React.Component { private _swipeRef: any; constructor(props: any) { super(props); this._swipeRef = React.createRef(); }...
That's weird, could you provide a minimal reproducible example or tell me what operation behavior you expect, like when and why you need to call the close manually?
do you store ref correctly when you render the swipe item by loop? like [this](https://github.com/ambisign-gavin/react-native-swipe-item/issues/22).
The library hasn't supported minimal swipe distance and disabled scale yet. I'll make the library support them soon.
Hi, you can upgrade to v0.7.0 now, and use these two props, [swipeThreshold](https://github.com/ambisign-gavin/react-native-swipe-item#swipeThreshold), and [disableButtonScale](https://github.com/ambisign-gavin/react-native-swipe-item#disableButtonScale).
Sorry, I can't reproduce this error. Could you provide a minimal reproducible example?
well, I still can't reproduce this error. My step: 1. `npx react-native init DemoProject --version ^0.68.0 --template react-native-template-typescript` 2. `npm i react-native-swipe-item` 3. add some code 4. npx pod-install 5....