1

I am using the library "react-native-popup-menu.

npm install react-native-popup-menu@0.14.0

version:0.14.0(it's latest)

when I try to run then error showed: this version of popup-menu requires RN 0.55+ but the problem was I install the latest library then why to get an error?

NOTE: added a library in Package.Json file.

Melih Mucuk
  • 6,988
  • 6
  • 37
  • 56
Rushi dave
  • 164
  • 2
  • 6
  • 20

1 Answers1

3

You should install 0.9 version of react-native-popup-menu. Last version is not compatible with your react-native version.

You should install it on your root folder like below:

npm install --save react-native-popup-menu@0.9

more info: https://github.com/instea/react-native-popup-menu#react-native-compatibility

Melih Mucuk
  • 6,988
  • 6
  • 37
  • 56