react-virtual-keyboard
react-virtual-keyboard copied to clipboard
Creating a password input or other different input types
I´m trying to change the type of the input created by the component. It is possible to create an input of type "password" or any other types?
Like this:
<Keyboard
value={this.state.value}
name='keyboard'
options={{
type: "input",
inputType: "password"
}}
[...]
Thanks
You can use type attribute like this:
<Keyboard
value={this.state.value}
type='password'
options={{
[...]
}}
/>