pub fn euv_input(node: VirtualNode<EuvInputProps>) -> VirtualNodeExpand description
A custom input component with label and event handling.
Internally binds onfocus and onblur so that mobile virtual keyboards
never obscure the field. The handler reads --euv-keyboard-height
(provided by the Tauri host / page-level bridge) and scrolls the input
above the IME with a 12px gap. The label is optional — leave it empty to
render an input without a label.
§Arguments
VirtualNode<EuvInputProps>- The props node containing id, label, placeholder, value, autocomplete, etc.
§Returns
VirtualNode- A labeled input element.