Components/Cursor

Cursor

An in-line blinking cursor widget — a visible insertion point that isn't tied to the real terminal cursor. Perfect for building text editors, prompts, or any UI that needs its own caret. Choose block, underline or bar.

Install the package

Every component ships in the single dart_tui package.

$dart pub add dart_tui
cursor · dart_tui
Cursor demo

CursorModel

PropertyTypeDescription
modeCursorModeblock, underline or bar.
blinkboolToggle visibility on each TickMsg.
visibleboolCurrent on/off state of the blink.
focusedboolWhen false, the cursor renders steady.

Related