2个不稳定版本

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

1716进程宏 中排名

Download history 27/week @ 2024-03-11 33/week @ 2024-03-18 66/week @ 2024-03-25 109/week @ 2024-04-01 24/week @ 2024-04-08 32/week @ 2024-04-15 34/week @ 2024-04-22 28/week @ 2024-04-29 39/week @ 2024-05-06 36/week @ 2024-05-13 35/week @ 2024-05-20 36/week @ 2024-05-27 28/week @ 2024-06-03 29/week @ 2024-06-10 28/week @ 2024-06-17 38/week @ 2024-06-24

每月下载量 123
15 个crate中使用(通过 makepad-wasm-bridge

MIT/Apache

46KB
1K SLoC

联系方式

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

Eddy Bruel:@ejpbruel 在twitter上

Sebastian Michailidis:@SebMichailidis 在twitter上

Makepad的discord频道:https://discord.gg/adqBRq7Ece

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

Makepad

概述

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

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 的错误)不包含行信息。此外,我们的 Web 构建目前仅支持夜间。因此,我们建议您使用夜间 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

安装 cargo 的 makepad 子命令

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 模拟器或连接到真实的 Android 设备,使用 adb 命令确保有一个设备连接正确,然后按照以下方式安装和运行

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 的开发者模式,请参阅此处说明:启用开发者模式
  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 构建

将 Makepad 应用程序作为 WASM 构建,只需一个命令即可。脚本将自动生成必要的 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 检查构建

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

cargo makepad check install-toolchain
cargo makepad check all

依赖项