Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove react-native-elements in react-native project

I want to remove react-native-elements in my react-native project. yarn remove react-native-elements yarn remove react-native-vector-icons when I remove this module and its dependence, I got an error .

error: bundling failed: Error: Unable to resolve module `react-native-elements` from `/Users/assetfun/Desktop/amigo/src/components/registerLogin/registerLogin.js`: Module `react-native-elements` does not exist in the Haste module map

enter image description here this method can't solve the problem.

  1. Clear watchman watches: watchman watch-del-all.
  2. Delete the node_modules folder: rm -rf node_modules && npm install.
  3. Reset Metro Bundler cache: rm -rf /tmp/metro-bundler-cache-* or npm start -- --reset-cache. 4. Remove haste cache: rm -rf /tmp/haste-map-react-native-packager-*.

want someone help

like image 655
TMD Avatar asked Sep 07 '25 16:09

TMD


1 Answers

Ensure you don't import react-native-elements and react-native-vector-icons in any file (surely you import it in registerLogin.js).

like image 108
Paolo Dell'Aguzzo Avatar answered Sep 10 '25 09:09

Paolo Dell'Aguzzo