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

Text.propTypes.style

Open balwinders opened this issue 2 years ago • 2 comments

TypeError: undefined is not an object (evaluating '_reactNative.Text.propTypes.style') React-native version:0.70.0

balwinders avatar Dec 09 '22 05:12 balwinders

@balwinders did you find the solution? what was the cause?

farazirfan47 avatar May 02 '23 15:05 farazirfan47

Fix:

  • navigate to node_modules/react-native-material-textfield/src/components
  • Open files affix/index.js, helper/index.js and label/index.js
  • Replace style: Animated.Text.propTypes.style with style: Text.propType
  • import { Text } in each of these 3 files import { Animated, Text } from 'react-native'

This should fix the issue

rdnsan avatar Jul 14 '23 13:07 rdnsan