Skip to content

LineEdit

LineEdit is a widget that provides a text field that you can use in your application.

Example

example_lineEdit.tsx
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