MiniKeyboard
MiniKeyboard wraps the native dynamic mini keyboard node. Use it when the platform should present a compact text-entry surface inside the app flow.
Key Fields
text: current text value.domain: keyboard domain, such asgeneric.onTextChange: called when the embedded text edit box changes.
Example
MiniKeyboard({
text: this.searchText,
domain: 'generic',
}).onTextChange(event => {
this.searchText = event.text;
});
For full input rows with labels, icons, and keyboard-dialog behavior, use TextInput.