Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

react-native prop type for text style

i have component with a simple structure and a <Text> somewhere inside the tree for which i want to pass in a style. Which works perfectly but for the proptypes validation.

The basic setup is not much more than that

export default class Component extends PureComponent {
    render() {
        return (<View><Text style={this.props.style}>Some text</Text></view>);
    }
}

Component.defaultProps = {
    style: null,
};

Component.propTypes = {
    style: ViewPropTypes.style,
};

The problem is that the ViewPropTypes.style does not contain i.e. color key. So providing a style with a color is invalid and produces a warning. I tried to import TextStylePropTypes as i found in https://github.com/facebook/react-native/blob/master/Libraries/Text/TextStylePropTypes.js but it is undefined.

Any advice on what to do?

like image 717
patman Avatar asked Feb 01 '18 15:02

patman


2 Answers

As the passed style prop is for the Text node, use Text.propTypes.style as shown below...

Component.propTypes = {
    style: Text.propTypes.style
};
like image 93
Galeel Bhasha Avatar answered Oct 26 '22 20:10

Galeel Bhasha


For anybody trying to achieve this seems like View.propTypes.style is deprecated while Text.propTypes.style is not.

like image 36
patman Avatar answered Oct 26 '22 19:10

patman