react-native-material-design icon indicating copy to clipboard operation
react-native-material-design copied to clipboard

That's not working with RN28.0+

Open RajuPilani opened this issue 9 years ago • 4 comments

When i update my RN version that's get lot of error with RN28+ version

RajuPilani avatar Jul 05 '16 09:07 RajuPilani

Just to add some details - With react native 0.29.0 I have following issue:

Whenever I import something from module, I'm getting undefined is not an object at create-icon-set.js line 46. Eg. import { Button } from 'react-native-material-design'; and when I remove import app is working OK.

jurosh avatar Jul 12 '16 19:07 jurosh

have you upgraded/installed react native vector icons @jurosh ?

mlabrum avatar Jul 26 '16 04:07 mlabrum

Add this condition in Navigate.js

let routes = require('../routes').default;

try {
    routes = require('../routes').default;
} catch (e) {
  console.log("require not workkk");
}

Now, that's working great in RN 0.31+

RajuPilani avatar Sep 13 '16 06:09 RajuPilani

Can you specify the path? I'm on react-native0.49.5

dottnit avatar Feb 15 '18 06:02 dottnit