titik

Crates.iotitik
lib.rstitik
version0.3.1
sourcesrc
created_at2020-06-16 23:00:31.564828
updated_at2021-04-15 00:04:43.910137
descriptionA cross platform text ui widget
homepage
repositoryhttps://github.com/ivanceras/titik
max_upload_size
id254708
size297,232
Jovansonlee Cesar (ivanceras)

documentation

https://docs.rs/titik

README

titik

Build Status Latest Version

Titik is a crossplatform TUI widget library with the goal of being able to interact intuitively on these widgets.

Screenshot

It uses crossterm as the underlying backend.

To run the demo use the following command:

cargo run --example demo 2>/dev/null

Note: 2>/dev/null is sending the debugging log from eprintln into the /dev/null device

Without doing so, will result a flicker in your screen caused by debugging info and tui mixed in one terminal output.

Alternatively, you can pipe the debugging log from eprintln into a file say /tmp/debug.log by doing so:

cargo run --example demo 2>/tmp/debug.log

You can then open a new terminal and tail the /tmp/debug.log file

tail -f /tmp/debug.log

License: MIT

Commit count: 221

cargo fmt