react-native-pinchable
react-native-pinchable copied to clipboard
requireNativeComponent: "PinchableView" was not found in the UIManager.
npm i react-native-pinchable cd ios && pod install
import Pinchable from 'react-native-pinchable'
then I got an error 'requireNativeComponent: "PinchableView" was not found in the UIManager.' how can I solve it?
Hi, any solution for this?
npm i react-native-pinchable cd ios && pod install
import Pinchable from 'react-native-pinchable'
... then I got an error 'requireNativeComponent: "PinchableView" was not found in the UIManager.' how can I solve it?
After pod install
you need to rebuild you app (npx react-native run-ios
or manually in Xcode)
npm i react-native-pinchable
import Pinchable from 'react-native-pinchable'
... then I got an error 'requireNativeComponent: "PinchableView" was not found in the UIManager.' how can I solve it?