Ilya Lezhnev

Results 5 comments of Ilya Lezhnev

Hi there! I have the same issue here. I am also using react-native-wifi-reborn. @arangu97 are you solve this problem?

> `npm install @react-native-community/push-notification-ios --legacy-peer-deps` worked for me It works, thanks!

For RN 0.80.1 I have also added ``` ... import { ViewPropTypes } from 'deprecated-react-native-prop-types'; ... ``` and replace `...View.propTypes,` to `...ViewPropTypes,`

and one more improvement ``` [eventName]: (event) => { if (this.props[eventName]) { this.props[eventName](event.nativeEvent || event); } }, ```