I have an input
where I listen for the keydown.space
event. This technique works fine on the desktop, but the event isn't triggered on mobile. My HTML template looks like the following:
<input
type="text"
(keydown.space)="onAdd()"
(keydown.backspace)="onRemoveLast()"
>
So I need a way to listen to the space key
event on the software keyboard of mobile phones.