赞
踩
egui 是一个简单、快速且高度可移植的 Rust 即时模式 GUI 库,可以轻松地将其集成到你选择的游戏引擎中,旨在成为最易于使用的 Rust GUI 库,以及在 Rust 中制作 Web 应用程序的最简单方法。
项目地址:https://github.com/emilk/egui
ui.heading("My egui Application");
ui.horizontal(|ui| {
ui.label("Your name: ");
ui.text_edit_singleline(&mut name);
});
ui.add(egui::Slider::new(&mut age, 0..=120).text("age"));
if ui.button("Click each year").clicked() {
age += 1;
}
ui.label(format!("Hello '{}', age {}", name, age));
Features & Theme:
这个号称闪电般速度的开源代码编辑器叫做:Lapce。Lapce 是用纯 Rust 编写的,有美观的 UI,内置 LSP 支持并且为开发者提供诊断、调试等智能代码的功能。
通过 Lapce 可以实现远程开发,并且对于 Vim 的用户 编辑器内置了支持类似于 Vim 的编辑体验而无需插件。
编程语言:Rust
开源地址:https://github.com/lapce/lapce
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。