"native-base": "2.4.5",
"react": "16.4.0",
"react-native": "0.55.4",
No errors
Unable to resolve ../utils/mapPropsToStyleNames" from ".//node_modules/native-base/dist/src/basic/View.js`: The module `../utils/mapPropsToStyleNames` could not be found"

Using iOS simulator. I haven't tried Android, but I would assume it happens there too.
Just booting the project from yarn start and I get this. Running on MacOS 10.13.4
@jwoertink Try clearing cache before run
npm start -- --reset-cache
@SupriyaKalghatgi I tried that, but still get the same error. I even rm -rf node_modules then npm install and booted. I just renamed the directory in my node_modules/native-base to get my app to boot.
@jwoertink Can you put your app on github or snack, for us to look into
I can't push up the source, but maybe I can try and recreate a sample app. It might take me a bit, but I'll try and get something.
I'm hitting the same issue. Upgraded from 2.4.2 to 2.4.5 and I have "Utils" not "utils" in my path, so getting same error:
The module `../utils/mapPropsToStyleNames` could not be found
Filesystem has:
yoyo:myapp drew$ find . -name mapPropsToStyleNames*
./node_modules/native-base/dist/src/Utils/mapPropsToStyleNames.js
./node_modules/native-base/dist/src/Utils/mapPropsToStyleNames.js.map
./node_modules/native-base/src/Utils/mapPropsToStyleNames.js
I had to yarn remove native-base then yarn add native-base to get the proper file structure (utils). I think the upgrade from 2.4.2 to 2.4.5 just didn't rename the folder properly.
you can rename folder from Utils to utils by yourself as temporary fix
@54vanya That isn't necessary, since this issue was fixed long back
@jwoertink Tried this?
The renaming folder? That's what I had to do to get it to work. I haven't had a chance to do a mock app yet to recreate it. After digging in, I think it's something with cache, but using --reset-cache doesn't work. Possibly something between yarn and npm maybe? No clue
@jwoertink Thousands of users using NativeBase with this version, no issues reported regarding this
We tried helping you, asked you to create sample project for us to check and help you
Anything else that you need from us?
@SupriyaKalghatgi true, but @kodayashi also just reported this issue too. We can just close it out for now. If I get some free time, I'll try to re-create in a sample app and can always re-open later. Unless anyone else runs in to this issue and is able to re-create somehow. Thanks for the help!
@jwoertink Thank you for cooperation
We cant help anyone out, unless we are able to reproduce it, thats how it works
almost similar to @kodayashi, I did upgrade from 2.4.2 to 2.5.2.
@SupriyaKalghatgi perhaps you could reproduce this issue by install 2.4.2 and then upgrade it to latest version.
In that case, @lonewolfffffff i will try to reproduce it by your way
I had the same issue with a fresh install of native base. Only renaming the Utils folder to utils helped.
Had the same issue. The issues seems to be present if you are running an old version of native-base definitely crops up in 2.4.2 for me. Just edit your package.json file to drop native-base. run yarn (or npm install), then run yard add native-base (or npm install --save native-base) to add it back, and it will install the latest version with all the fixes.
I found a folder that named Utils in the node_modules/native-base/dist/src instead utils (they are different of letter case)
I just ran into this issue when upgrading from 2.3 -> 2.8.1. I suspect it's an issue with npm or yarn caching modules because it was resolved when I wiped my npm cache then reinstalled 2.8.1.
Problem solved by rm -rf node_modules && yarn install.
Cache issue.
Most helpful comment
I found a folder that named
Utilsin thenode_modules/native-base/dist/srcinsteadutils(they are different of letter case)