5 个版本 (破坏性)

0.5.0 2024年8月10日
0.4.0 2024年3月4日
0.3.0 2023年7月24日
0.2.0 2023年3月3日
0.1.0 2023年2月15日

#210GUI

Download history · Rust 包仓库 1/week @ 2024-04-29 · Rust 包仓库 3/week @ 2024-05-20 · Rust 包仓库 13/week @ 2024-05-27 · Rust 包仓库 12/week @ 2024-06-03 · Rust 包仓库 2/week @ 2024-06-10 · Rust 包仓库 4/week @ 2024-06-17 · Rust 包仓库 12/week @ 2024-07-01 · Rust 包仓库 32/week @ 2024-07-29 · Rust 包仓库 112/week @ 2024-08-05 · Rust 包仓库 33/week @ 2024-08-12 · Rust 包仓库

每月下载 177 次

MIT 许可证

11KB
228

Awesome GTK

Build codecov Crates.io Docs.rs

为gtk-rs使用的各种实用工具

遍历小部件

use awesome_gtk::prelude::*;

// iterate over direct children
for child in widget.children() {

}

// iterate over direct children in reverse order
for child in widget.children_rev() {

}

// iterate over all children (depth-first)
for child in widget.traverse() {

}

依赖项

~15–23MB
~434K SLoC