react-native-swipe-hidden-header
react-native-swipe-hidden-header copied to clipboard
issue proptypes
i got issue from propType... i delete it for solve the issue
+1 same problem! same solution!
Hi everyone,
The problem is related to importing PropTypes correctly, since this component was last updated 2 years ago.
Instead of importing PropTypes like this:
import React, { Component, PropTypes } from 'react';
I did it this way and it solved the problem:
import React, { Component } from 'react';
import PropTypes from 'prop-types';