5 unstable releases
0.3.1 | Apr 15, 2021 |
---|---|
0.3.0 | Oct 13, 2020 |
0.2.2 |
|
0.2.1 | Jul 11, 2020 |
0.1.0 | Jun 16, 2020 |
#628 in Command-line interface
140KB
4K
SLoC
titik
Titik is a crossplatform TUI widget library with the goal of being able to interact intuitively on these widgets.
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
Dependencies
~10MB
~157K SLoC