Quantcast
Channel: Active questions tagged react-native+typescript - Stack Overflow
Viewing all articles
Browse latest Browse all 6405

Change text color of TextInput in React Native Paper - for one word only

$
0
0

Let's assume the following is my input

return (<View style={styles.container}><TextInput        type="outlined"        style={this.props.style}        onChangeText={this.props.onChange}        label={this.props.label}        value={"Hey @alex"}        placeholder={this.props.placeholder}      /></View>)

I want to have different color for @alex such as blue how to achieve that?


Viewing all articles
Browse latest Browse all 6405

Trending Articles