文件名称:Rust 编程语言的文本用户界面库
文件大小:332KB
文件格式:ZIP
更新时间:2024-07-18 11:48:16
rust terminal tui ncurses
草书Cursive 是 Rust 的 TUI(文本用户界面)库。它默认使用 ncurses,但也可以使用其他后端。它允许您为终端应用程序构建丰富的用户界面。文档它旨在安全且易于使用:[dependencies ]cursive =" 0.16"或者使用最新的 git 版本:[dependencies ]cursive = {git =" https://github.com/gyscos/cursive" }(您还需要安装 ncurses。 )use cursive:: views:: {Dialog, TextView};fnmain () {// Creates the cursive root - required for every application.letmut siv= cursive::default ();// Creates a dialog with a single "Quit" button siv.add_layer (Dialog::around (TextView::new ("Hello Dialog!" ))