fiadtui 0.9.0

Simple TUI event loop for ratatui with tokio and crossterm
Documentation

Docs Docs

fiadtui

Simple TUI wrapper for ratatui with tokio and crossterm.

Example usage

Counter application

The classic counter (press + to increment, - to decrement).

Link

cargo run --example counter

Delayed counter application

Demonstrates the use of asynchronous message handlers.

Similar to the counter application, but updates the counter value asynchronously after 1 second. Further updates are dropped while any existing update is pending.

Link

cargo run --example delayed_counter

External tick application

Demonstrates the use of a channel created externally.

A Tick message is sent every 500ms to the app, from external code.

Link

cargo run --example tick