#polyhorn #style #ui #macro #building #cross-platform #rapidly

过程宏 polyhorn-ui-macros

将类似 CSS 的规范转换为样式结构的 Polyhorn UI 的过程宏

5 个不稳定版本

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

#14#rapidly

Download history 14/week @ 2024-03-11 9/week @ 2024-03-18 13/week @ 2024-03-25 36/week @ 2024-04-01 13/week @ 2024-04-08 7/week @ 2024-04-15 8/week @ 2024-04-22 7/week @ 2024-04-29 10/week @ 2024-05-06 12/week @ 2024-05-13 14/week @ 2024-05-20 14/week @ 2024-05-27 13/week @ 2024-06-03 13/week @ 2024-06-10 8/week @ 2024-06-17 16/week @ 2024-06-24

52 每月下载量
6 个crate中使用 (2 个直接使用)

MIT 协议

275KB
6K SLoC

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. 现在,使用 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将Polyhorn UI中实现的宏封装在一个proc-macro = true库中。

依赖项

~7.5MB
~154K SLoC