react-native-material-textfield
react-native-material-textfield copied to clipboard
Text.propTypes.style
TypeError: undefined is not an object (evaluating '_reactNative.Text.propTypes.style') React-native version:0.70.0
@balwinders did you find the solution? what was the cause?
Fix:
- navigate to
node_modules/react-native-material-textfield/src/components
- Open files
affix/index.js
,helper/index.js
andlabel/index.js
- Replace
style: Animated.Text.propTypes.style
withstyle: Text.propType
- import { Text } in each of these 3 files
import { Animated, Text } from 'react-native'
This should fix the issue