LineEdit
LineEdit is a widget that provides a text field that you can use in your application.
Example
import { LineEdit } from '@vixen-js/core-react';
export function LineEditExample() {
const handleTextChanged = (text: string) => { console.log(text); };
return ( <Window> <LineEdit onTextChange={handleTextChanged} /> </Window> )}
Learn more about LineEdit