2个不稳定版本

0.4.0 2023年9月20日
0.3.0 2022年10月20日

#1383 in 过程宏

Download history 42/week @ 2024-04-14 52/week @ 2024-04-21 35/week @ 2024-04-28 54/week @ 2024-05-05 51/week @ 2024-05-12 52/week @ 2024-05-19 43/week @ 2024-05-26 50/week @ 2024-06-02 41/week @ 2024-06-09 61/week @ 2024-06-16 45/week @ 2024-06-23 28/week @ 2024-06-30 24/week @ 2024-07-07 52/week @ 2024-07-14 34/week @ 2024-07-21 41/week @ 2024-07-28

每月151次下载
用于16个crate(通过makepad-live-compiler

MIT/Apache

120KB
2.5K SLoC

联系方式

Rik Arends: @rikarends on twitter, https://fosstodon.org/@rikarends#

Eddy Bruel: @ejpbruel on twitter

Sebastian Michailidis: @SebMichailidis on twitter

我们的Makepad Discord频道: https://discord.gg/adqBRq7Ece

关于Makepad的最新讨论: https://www.youtube.com/watch?v=rC4FCS-oMpg

Makepad

概述

这是Makepad的仓库,一种在Rust中为原生和Web构建UI的新方法。

Makepad由Makepad框架和Makepad Studio组成。

Makepad框架是我们的UI框架。它由多个crate组成,但顶级crate是makepad-widgets。有关Makepad框架的进一步说明,请参阅该crate的README。

Makepad Studio 是我们使用 Makepad 框架构建的一个 IDE 原型。它仍在积极开发中,但我们的最终目标是创建一个允许在运行时更改应用程序设计的 IDE。Makepad Studio 的主要存储库是 makepad-studio。请参阅该存储库的 README 以获取更多信息。

演示链接

makepad-example-fractal-zoom

makepad-example-ironfish

makepad-example-simple

先决条件

要构建 Makepad 存储库,您首先需要安装 Rust。 https://rust-lang.net.cn/tools/install

我们的本地构建适用于稳定的 Rust 工具链。但是,除非您使用夜间 Rust 工具链,否则 Makepad 在运行时生成的某些错误(特别是那些起源于我们的 DSL)不包含行信息。此外,我们的网络构建目前仅适用于夜间。因此,我们建议您使用夜间 Rust 工具链构建 Makepad。

对于非标准构建目标(apple ios、apple tvos、android、wasm),我们有一个名为 'cargo-makepad' 的构建工具,您需要安装。

从存储库中安装它

cargoinstall --path=./tools/cargo_makepad

或从 cargo 安装(可能位于存储库之后)

cargoinstall cargo-makepad

现在,此工具可用于为每个平台安装所需工具链

cargomakepad wasm install-toolchain

cargomakepad apple ios install-toolchain

cargomakepad apple tvos install-toolchain

cargomakepad android --abi=all install-toolchain

运行 makepad studio

Makepad studio 允许您轻松构建和查看示例,并且它内部使用 cargo-makepad,因此请确保按照上述说明安装 cargo-makepad。

cargo运行 -pmakepad-studio --release

或从 cargo 安装(可能位于存储库之后)

cargoinstall makepad-studio

如果您构建了 wasm 应用程序,您可以在以下位置打开它:

http://127.0.0.1:8010

构建和运行命令

Makepad 是一个用 Rust 编写的跨平台 UI 框架。它正在积极开发中,但已经可以用来构建快速原型和简单(甚至复杂的 UI)应用程序。

Makepad 的一个关键特性是它能够在多个平台上简单、快速地构建和运行应用程序,包括 MacOS、Windows、Linux、Android、iOS 和 WebAssembly。

以下是不同平台上构建和运行 Makepad 应用程序的最新/最新说明。

假设

我们将假设以下内容:应用程序名称:makepad-example-simple

它可以更改为您在 Makepad 示例文件夹 中找到的任何现有示例应用程序。

构建和运行说明

按照以下步骤 1 命令进行 Makepad 构建和运行环境的初始设置。在步骤 2 之后,您可以选择构建感兴趣的任何一种或多种平台。

1. 设置 Makepad

projects 替换为您自己的目录名称。

cd ~/projects

克隆 Makepad 存储库

git clone https://github.com/makepad/makepad.git

git clone [email protected]:makepad/makepad.git

更改到最新的 'rik' 分支(可选)

cd ~/projects/makepad
git branch rik

安装 makepad subcommand for cargo

cd ~/projects/makepad
cargo install --path ./tools/cargo_makepad

安装平台工具链

rustup toolchain install nightly

2. 进入示例文件夹(可选)

cd ~/projects/makepad/examples
ls -l

此目录中的所有示例都具有以 makepad-example- 前缀加上目录名称的应用程序名称。

3. MacOS / PC

在桌面上运行是尝试示例应用程序最快的方法。

cd ~/projects/makepad/examples/simple
cargo run

cd ~/projects/makepad
cargo run -p makepad-example-simple

现在应该有一个桌面应用程序窗口正在运行(可能在 MacOS 的 Dock 上单击图标以显示它)

4. Android 构建

安装 Android 工具链(第一次)

cargo makepad android install-toolchain

在 Android 设备或 Android 模拟器上安装应用程序

打开Android模拟器或使用adb命令连接到真实的Android设备,确保只有一个设备连接正确,然后按照以下步骤安装和运行。

cd ~/projects/makepad
cargo makepad android run -p makepad-example-simple --release

应用程序将被安装在模拟器或设备上。

5. iOS设置与安装

安装iOS工具链(第一次使用)

xcode-select --install
cargo makepad apple ios install-toolchain

在Apple设备或iOS模拟器上安装应用程序

iOS设置

对于iOS,过程稍微复杂一些。涉及的步骤包括

  1. 启用iPhone的开发者模式,请参考以下说明:[启用开发者模式](https://www.delasign.com/blog/how-to-turn-on-developer-mode-on-an-iphone/)
  2. 设置Apple开发者账号
  3. 在XCode中设置一个空的骨架项目
    1. 文件 -> 新建 -> 项目以创建一个新的"应用程序"
    2. 将产品名称设置为makepad-example-simple(在后面的--app中使用)
    3. 将组织标识符设置为任意值,本例中我们将使用my.test(在后面的--org中使用)
    4. 设置项目签名和功能以选择正确的团队账号
  4. 在XCode中构建/运行此项目,在模拟器和设备上安装和运行应用程序
  5. 一旦模拟器和设备上安装并正确运行了"骨架"应用程序,那么就可以准备安装Makepad应用程序。

Makepad安装

我们将运行cargo makepad apple ios命令,类似于上面的Android构建,但需要填写2到6个额外的参数

--org

组织标识符的前几个部分。通常形式为com.somecompanyorg.orgname等。这是设置上述初始骨架应用程序时使用的相同值。对于本例

my.test

--app

应用程序或项目的名称。这与设置上述初始骨架应用程序时使用的相同产品名称。在这种情况下

makepad-example-simple

在iOS模拟器上安装应用程序

cd ~/projects/makepad
cargo makepad apple ios \
  --org=my.test \
  --app=makepad-example-simple \
  run-sim -p makepad-example-simple --release

在iOS设备上安装应用程序

由于可能存在多个配置文件、签名标识和目标设备,因此真实设备上的安装过程更为复杂。因此,Makepad提供了一個列出命令,显示所有本地配置文件、签名标识和连接的设备,可以用作后续命令参数的值。

例如,首先运行以下命令

cd ~/projects/makepad
cargo makepad apple list

此命令将打印出当前系统上所有配置文件、签名标识和设备标识的列表。用户必须决定并选择每种类型所需使用的那些。

一旦决定,运行以下命令并填写从输出中选择的唯一起始字符

cargo makepad apple ios \
 --profile=unique-starting-hex-string-of-provisioning-profiles \
 --cert=UNIQUE_STARTING_HEX_STRING-of-signing-certificates \
 --device-identifier=UNIQUE-STARTING-HEX-STRING-of-devices \
 --org=my.test \
 --app=makepad-example-simple \
 run-device -p makepad-example-simple –release
 

应用程序将被安装在模拟器或真实设备上。(确保设备已连接并解锁)

6. WASM构建

作为WASM构建运行Makepad应用程序就像一个命令一样简单。脚本将自动生成必要的index.html和其他文件,并在8010端口启动一个本地Web服务器。运行以下命令后,只需在浏览器中打开http://127.0.0.1:8010/即可加载和运行应用程序。

安装WASM工具链(第一次使用)

cargo makepad wasm install-toolchain

将应用程序作为WASM二进制文件安装到浏览器中

cargo makepad wasm run -p makepad-example-simple --release

Makepad命令快速参考

Cargo工具安装

这些是在最初至少运行一次以设置Makepad开发环境的命令。当cargo_makepad脚本更新时,也应该偶尔运行这些命令。

rustup update
rustup install nightly
rustup toolchain install nightly

cd ~/projects/makepad
cargo install --path ./tools/cargo_makepad
cargo makepad android install-toolchain
cargo makepad apple ios install-toolchain
cargo makepad apple tv install-toolchain
cargo makepad wasm install-toolchain

Android

将应用程序安装到iOS模拟器的命令。

cargo makepad android run -p makepad-example-simple --release

cargo makepad android run -p makepad-example-fractal-zoom --release

cargo makepad android run -p makepad-example-ironfish --release

cargo makepad android run -p makepad-example-news-feed --release

iOS模拟器

将应用程序安装到iOS模拟器的命令。

cargo makepad apple ios --org=my.test --app=makepad-example-simple run-sim -p makepad-example-simple --release

cargo makepad apple ios --org=my.test --app=makepad-example-fractal-zoom run-sim -p makepad-example-fractal-zoom --release

cargo makepad apple ios --org=my.test --app=makepad-example-ironfish run-sim -p makepad-example-ironfish --release

cargo makepad apple ios --org=my.test --app=makepad-example-news-feed run-sim -p makepad-example-news-feed --release

iOS设备

在物理iOS设备上安装应用的命令。

请参阅上面的第5步以获取更详细的说明。

cargo makepad apple ios --org=my.test --profile=ABC --cert=DEF --device=MyiPhone --app=makepad-example-simple run-device -p makepad-example-simple --release

cargo makepad apple ios --org=my.test --profile=ABC --cert=DEF --device=MyiPhone --app=makepad-example-fractal-zoom run-device -p makepad-example-fractal-zoom --release

cargo makepad apple ios --org=my.test --profile=ABC --cert=DEF --device=MyiPhone --app=makepad-example-ironfish -run-device -p makepad-example-ironfish --release

cargo makepad apple ios --org=my.test --profile=ABC --cert=DEF --device=MyiPhone --app=makepad-example-news-feed run-device -p makepad-example-news-feed --release

Cargo Check构建

检查所有Makepad支持平台编译通过的命令:(将占用100%CPU并可能导致机器挂起,仅在高端系统上尝试)

cargo makepad check install-toolchain
cargo makepad check all

依赖项