#polyhorn #android #low-level #bindings #building #cross-platform #rapidly

sys polyhorn-android-sys

为Polyhorn提供的低级Android绑定

4个版本

0.4.0 2020年12月2日
0.3.2 2020年10月20日
0.3.1 2020年10月20日
0.3.0 2020年10月20日

#11 in #rapidly

每月下载 33
5 个crate中使用 (via polyhorn-android)

MIT 许可证

24KB
728 代码行(不含注释)

Polyhorn

一个用于快速构建跨平台Rust应用程序的库 🦀。

Polyhorn 是一个用于构建用户界面的Rust库。对于熟悉React或React Native的用户,这个库在目的上将会非常相似。

它还附带自己的命令行界面,使得启动新项目和构建、运行现有项目变得非常容易。

通俗地说,两者都被称为Polyhorn。


🚧 警告: Polyhorn仍然是一个非常正在进行中的项目,这意味着在其官方发布之前可能会出现许多破坏性更改和缺失的功能(对此表示歉意)。


开始使用

安装

安装Polyhorn非常简单,只需几秒钟。如果您是Rust的新手,您还需要按照以下第1步安装Rust。如果您已经在使用Rust,您可以跳过第1步,使用第2步安装Polyhorn。

  1. 如果您还没有安装Rust,请使用rustup安装Rust。

    $ curl -sSf https://sh.rustup.rs | sh
    
  2. 现在,使用Rust提供的包管理器cargo安装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

它将提示您选择可用的模拟器。

依赖关系

~1.1–2.4MB
~34K SLoC