react-native-walkthrough-tooltip icon indicating copy to clipboard operation
react-native-walkthrough-tooltip copied to clipboard

React 18 Support

Open nbdaaron opened this issue 3 years ago • 5 comments
trafficstars

Can this library add support for React 18? Thanks!

nbdaaron avatar Oct 13 '22 08:10 nbdaaron

would this be as simple as bumping the react dependency? or is there an incompatibility?

https://github.com/jasongaare/react-native-walkthrough-tooltip/blob/master/package.json#L40

dcsan avatar Nov 16 '22 21:11 dcsan

Please, add support for React > 18, this librsry cant install in react narive >.70

estmau avatar Feb 13 '23 15:02 estmau

I approve this.

VincentCrete avatar Mar 08 '23 14:03 VincentCrete

I used overrides to solve the problem as this is a version specification issue with the @types/react package.

{
  "name": "my-app",
  "dependencies": {
    "react": "18.1.0",
    "react-native": "0.70.5",
    "react-native-walkthrough-tooltip": "1.5.0"
  },
  "devDependencies": {
    "@types/react": "18.0.24",
    "@types/react-native": "0.70.5"
  },
  "overrides": {
    "react-native-walkthrough-tooltip": {
      "@types/react": "18.0.24"
    }
  },

miyamaework avatar Apr 12 '23 04:04 miyamaework

Update?

SamJbori avatar Jul 07 '23 03:07 SamJbori