I\'ve upgraded from RN 0.54 to 0.57 and my app has pretty much fallen over due to using React Native Elements.
I took use of their error functionality on TextI
This occurred for me because I was using a lower-case function name by accident:
export const p = (props) => {
return (
{props.children}
);
};
Should be:
export const P = (props) => {
return (
{props.children}
);
};
Notice in the second one the p
is capitalized. This is needed in order for the components to be detected as React Native components.