Reputation: 23
The caps lock icon is popping up as an inbuilt feature of React Native - TextInput component. I would like to style this icon so I can apply the right padding to it.
No documentation on this feature, but seems to be turned on when secureTextEntry prop is true for the component.
<DefaultInputField
id="password"
placeholder="Enter password..."
label="Password"
secureTextEntry=true
/>
Upvotes: 2
Views: 1008
Reputation: 91
If you only want to apply (right) padding you could do the following.
If done correctly this will visually yield the same result but you can control the right padding.
Upvotes: 1