35 个稳定版本
新版本 1.12.6 | 2024 年 8 月 20 日 |
---|---|
1.12.5-alpha.2 | 2024 年 7 月 11 日 |
1.10.2 | 2024 年 3 月 11 日 |
1.8.14 | 2023 年 12 月 6 日 |
1.8.13 | 2023 年 11 月 21 日 |
#63 in #web-ui
3KB
Viewy
结合了设计系统和 UI 库优势的 UI 工具包。
- 通过配置文件自定义主题
- 适用于小型和更复杂的项目
"Hello, World!" 示例程序(rocket.rs)
use viewy::*;
use viewy::components::*;
#[macro_use] extern crate rocket;
pub fn default_layout() -> Box<dyn Fn(Box<dyn Renderable>) -> Box<dyn Renderable>> {
Box::new(move |content| Box::new({
content
}))
}
#[get("/")]
fn index() -> RawHtml<String> {
RawHtml({
Page::new(
&format!("{} – Viewy", "Hello World"),
&default_layout(),
{
Text::new("Hello world", TextStyle::LargeTitle)
}
)
.compile(RenderMode::Complete)
})
}
#[launch]
fn rocket() -> _ {
rocket::build().mount("/", routes![index])
}