6 个版本 (3 个重大变更)
0.4.0 | 2020年12月2日 |
---|---|
0.3.2 | 2020年10月20日 |
0.2.0 | 2020年10月10日 |
0.1.0 | 2020年9月25日 |
#1642 in 文本处理
在 4 个 crate 中使用 (通过 polyhorn)
485KB
12K SLoC
Polyhorn
一个用于快速构建跨平台应用的 Rust 库 🦀。
Polyhorn 是一个用于构建用户界面的 Rust 库。对于熟悉 React 或 React Native 的用户,这个库在目的上非常相似。
它还自带命令行界面,使得开始一个新项目和构建、运行现有项目变得简单。
俗语说,它们都叫 Polyhorn。
🚧 警告: Polyhorn 仍然是一个非常在开发中的项目,这意味着在其正式发布之前,可能会出现许多重大变更和缺失的功能(对此表示歉意)。
入门
安装
Polyhorn 的安装简单,只需几秒钟。如果您是 Rust 的新手,您还需要按照以下步骤 1 安装 Rust。如果您已经使用 Rust,您可以跳过步骤 1,并按照步骤 2 安装 Polyhorn。
-
如果您还没有安装 Rust,请使用 rustup 安装 Rust。
$ curl -sSf https://sh.rustup.rs | sh
-
现在,使用 cargo(Rust 提供的包管理器)安装 Polyhorn。
$ cargo install polyhorn
开始一个项目
从我们内置的模板之一开始一个新的项目很容易。对于几乎空白的项,运行
$ polyhorn new hello-world
您可以将 hello-world
替换为您的应用程序名称。请确保它只包含字母数字字符和破折号。
这将生成一个具有以下结构的目录
hello-world/
├── .gitignore
├── assets
│ └── .gitkeep
└── src
└── lib.rs
这是 src/lib.rs
的内容
use polyhorn::prelude::*;
#[derive(Default)]
pub struct App {}
impl Component for App {
fn render(&self, _manager: &mut Manager) -> Element {
poly!(<Window>
<View style=!{
align-items: center;
justify-content: center;
background-color: red;
height: 100%;
}>
<Text style=!{ color: white; }>
"Welcome to your Polyhorn app!"
</Text>
</View>
</Window>)
}
}
polyhorn::render!(<App />);
运行一个项目
在您的命令行中,导航到您的项目。例如,如果您遵循上面的说明,您现在应该在 hello-world/
。然后,决定您要在哪个平台上运行。请注意,所有平台共享相同的代码库,因此您无需提前规划。
在 iOS 上运行
如果您想在 iOS 模拟器上运行您的应用程序,请运行此命令
$ polyhorn run ios
它将要求您选择一个可用的模拟器。
lib.rs
:
此crate实现了针对iOS的Polyhorn。
依赖关系
~12MB
~210K SLoC