Questions & Answers
How to implement show/hide toggling
Toggling the visibility of the keyboard is not a built-in feature, but should be easy to implement with CSS and minimal JS.
Here are some examples:
Note: Approaches using “if” patterns (such as ngIf on Angular, && on React, etc) are generally discouraged, as they either destroy the instance or remove the DOM element without destroying the instance (causing errors). If you opt for these approaches, just be aware of what they’re doing 🙂