#layout #facebook #yoga #flexbox #engine #node #prelude

polyhorn-yoga

Rust 对 Facebook Yoga 的绑定,Yoga 是一个 Flexbox 布局引擎

3 个版本

0.3.4 2020年12月7日
0.3.3 2020年10月23日
0.3.2 2020年9月25日

#2 in #yoga

Download history 22/week @ 2024-04-08 23/week @ 2024-04-15 24/week @ 2024-04-22 19/week @ 2024-04-29 27/week @ 2024-05-06 28/week @ 2024-05-13 24/week @ 2024-05-20 34/week @ 2024-05-27 26/week @ 2024-06-03 24/week @ 2024-06-10 22/week @ 2024-06-17 26/week @ 2024-06-24 7/week @ 2024-07-08 32/week @ 2024-07-15 19/week @ 2024-07-22

62 每月下载量
用于 2 crates

MIT 许可证

6.5MB
124K SLoC

C++ 56K SLoC // 0.2% comments JavaScript 19K SLoC // 0.0% comments C# 17K SLoC // 0.0% comments Java 16K SLoC // 0.0% comments Python 7.5K SLoC // 0.3% comments Visual Studio Project 3K SLoC Rust 1.5K SLoC // 0.0% comments Objective-C 1K SLoC // 0.0% comments Visual Studio Solution 1K SLoC Automake 385 SLoC // 0.2% comments Swift 294 SLoC // 0.2% comments M4 255 SLoC // 0.4% comments Shell 238 SLoC // 0.3% comments Bazel 154 SLoC // 0.1% comments C 139 SLoC // 0.0% comments Ruby 85 SLoC // 0.0% comments Xcode Config 33 SLoC // 0.7% comments Prolog 9 SLoC NuGet Config 8 SLoC Batch 2 SLoC

包含 (JAR 文件, 1.5MB) android-support-v4.jar, (Zip 文件, 1MB) appcompat-v7-24.2.1.aar, (JAR 文件, 315KB) src/yoga/lib/junit/junit-4.12.jar, (JAR 文件, 55KB) gradle-wrapper.jar, (Zip 文件, 59KB) src/yoga/lib/soloader/soloader-0.5.1.aar, (JAR 文件, 32KB) src/yoga/lib/jsr-305/jsr305.jar 和更多

Yoga-rs

Build Status

A Rust 对 Facebook Yoga 布局库的包装。

您还可以检查 stretch,因为它是一个纯 Rust 实现。

依赖关系

  • cargo
  • rustc

构建

$ cargo build --release

运行示例

$ cargo run --release --example layout

示例代码

#[macro_use]
extern crate yoga;

use yoga::prelude::*;
use yoga::Node;
use yoga::StyleUnit::{Auto, UndefinedValue};

fn main() {
	let mut node = Node::new();

	let mut child = Node::new();
	let mut other_child = Node::new();

	node.insert_child(&mut child, 0);
	node.insert_child(&mut other_child, 1);

	style!(node,
		Margin(10 pt),
		MarginLeft(Auto),
		PaddingHorizontal(4 pt),
		Left(16 %),
		Bottom(UndefinedValue)
	);

	let child_styles = make_styles!(
		Width(32 pt),
		Height(32 pt),
		FlexGrow(1.0),
		Margin(Auto)
	);

	child.apply_styles(&child_styles);
	other_child.apply_styles(&child_styles);

	node.calculate_layout(512.0, 512.0, yoga::Direction::LTR);

	println!("Layout is {:#?}", child.get_layout());
}

测试

单元测试基于上游固定值自动生成,不应手动编辑。

$ cargo test

要生成测试用例:下载 ChromeDriver 二进制文件并将其放置在您的 $PATH 中的某个位置。Linux/MacOS 示例

$ cp chromedriver /usr/local/bin

安装所需的 Ruby 钩子。

$ sudo gem install watir

生成测试。

$ ruby gentest/gentest.rb

依赖关系