Rendering the contents of the virtual keyboard must be handled by your application itself,
and virtual keyboard API is used to trigger the keyboard to appear, and react to state
updates from user input.
Your application can configure the virtual keyboard to show different keyboard layouts by setting the type property,
which should be set to one of the SwkbdType enum values.
For example, to show a numeric keypad:
import { SwkbdType } from '@nx.js/constants';// Configure the virtual keyboard to show a numeric keypadnavigator.virtualKeyboard.type = SwkbdType.NumPad;navigator.virtualKeyboard.show();