Hi,
How can I modify the TextInputs active underline colour?
Cheers,
Alex
To change inactive color you can pass underlineColor prop.
To change active color you can pass theme object with primary color.
Example:
<TextInput
label="Text input"
placeholder="Type something"
value={this.state.text}
theme={{ colors: { primary: 'green' } }}
underlineColor="green"
/>
Most helpful comment
To change inactive color you can pass
underlineColorprop.To change active color you can pass theme object with primary color.
Example: