Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RNTMap was not found in the UIManager

I am following along the official documentation, copy and pasting the code provided there:

https://facebook.github.io/react-native/docs/0.56/native-components-ios

But I am still running into this error screenshot

does anyone know what the docs are missing to get this working?

like image 865
skfp Avatar asked Nov 08 '22 02:11

skfp


1 Answers

This is happens because native module not compiled yet, simply execute react-native run-ios in terminal while in project directory.

Note: For latest node version use: npx react-native run-ios

like image 125
Ganpat Avatar answered Nov 15 '22 11:11

Ganpat