Guides/Examples

Examples

The package ships 60+ runnable examples — one per feature, each with a recorded GIF. Clone the repo and run any of them.

Running an example

bash
# JIT (source, slower first run)
dart run example/simple.dart

# Kernel snapshot (~2× faster startup)
make kernel EXAMPLE=simple
dart run tool/bin/simple.dill

The catalogue

ExampleWhat it shows
simple.dartTick-driven countdown, minimal model
textinput.dartSingle-line text input
textinputs.dartMulti-field form with Tab focus
textarea.dartMulti-line editor
readline.dartReadline editing keys
autocomplete.dartTab-completion suggestions
list_filter.dartListModel with fuzzy filtering
list_mutation.dartAdd / remove list items live
multi_select.dartCheckbox list with toggle-all
table.dartCity data table
tree.dartExpandable language/framework tree
cursor_model.dartBlinking block/underline/bar cursor
spinner.dart / spinners.dartOne spinner / all frame styles
progress_bar.dart / progress_animated.dartInteractive / auto-incrementing progress
spring.dartHarmonica-style eased motion
gum.dartfilter / spin / pager helpers
file_picker.dartDirectory browser
help.dartHelpModel + KeyMap
timer.dart / stopwatch.dartCountdown / elapsed time
paginator.dartPage dot indicator
gradient.dartPer-character gradient text
canvas.dartCanvas compositing with z-index
tabs.dartTabsModel tabbed interface
border_style.dartAll Border variants + titles + colors
word_wrap.dartStyle.wordWrap at multiple widths
sgr_attrs.dartSGR text attributes + Style.inherit()
mouse.dartMouse click / scroll events
exec_cmd.dartExternal editor via execProcess
http.dartHTTP fetch with spinner
file_log.dartWrite diagnostics to a file, not the UI
form.darthuh-style fields, validation, wizard, dynamic pages
showcase.dart / all_features.dartFull-featured galleries

Plus more: window_size, fullscreen, cursor_style, pipe, send_msg, realtime, prevent_quit, sequence, focus_blur, vanish, print_key, views, set_window_title, altscreen_toggle, prompts_chain, shopping_list, package_manager, composable_views, color_profile, result, isbn_form.

Related