29 releases

new 0.4.3 Apr 12, 2024
0.4.1 Mar 19, 2024
0.3.19 Apr 12, 2024
0.3.18 Nov 2, 2023
0.1.0 Jun 10, 2022

#4 in GUI

Download history 11305/week @ 2023-12-23 12720/week @ 2023-12-30 15886/week @ 2024-01-06 16766/week @ 2024-01-13 17325/week @ 2024-01-20 15400/week @ 2024-01-27 15169/week @ 2024-02-03 15788/week @ 2024-02-10 23189/week @ 2024-02-17 19681/week @ 2024-02-24 20418/week @ 2024-03-02 17305/week @ 2024-03-09 17808/week @ 2024-03-16 18186/week @ 2024-03-23 20041/week @ 2024-03-30 14388/week @ 2024-04-06

72,038 downloads per month
Used in 199 crates (11 directly)

MIT license

630KB
10K SLoC

Taffy

GitHub CI crates.io docs.rs

Taffy is a flexible, high-performance, cross-platform UI layout library written in Rust.

It currently implements the CSS Block, Flexbox and CSS Grid layout algorithms. Support for other paradigms is planned. For more information on this and other future development plans see the roadmap issue.

This crate is a collaborative, cross-team project, and is designed to be used as a dependency for other UI and GUI libraries. Right now, it powers:

  • Dioxus: a React-like library for building fast, portable, and beautiful user interfaces with Rust
  • Bevy: an ergonomic, ECS-first Rust game engine
  • The Lapce text editor via the Floem UI framework
  • The Zed text editor via the GPUI UI framework

Usage

use taffy::prelude::*;

// First create an instance of TaffyTree
let mut tree : TaffyTree<()> = TaffyTree::new();

// Create a tree of nodes using `TaffyTree.new_leaf` and `TaffyTree.new_with_children`.
// These functions both return a node id which can be used to refer to that node
// The Style struct is used to specify styling information
let header_node = tree
    .new_leaf(
        Style {
            size: Size { width: length(800.0), height: length(100.0) },
            ..Default::default()
        },
    ).unwrap();

let body_node = tree
    .new_leaf(
        Style {
            size: Size { width: length(800.0), height: auto() },
            flex_grow: 1.0,
            ..Default::default()
        },
    ).unwrap();

let root_node = tree
    .new_with_children(
        Style {
            flex_direction: FlexDirection::Column,
            size: Size { width: length(800.0), height: length(600.0) },
            ..Default::default()
        },
        &[header_node, body_node],
    )
    .unwrap();

// Call compute_layout on the root of your tree to run the layout algorithm
tree.compute_layout(root_node, Size::MAX_CONTENT).unwrap();

// Inspect the computed layout using `TaffyTree.layout`
assert_eq!(tree.layout(root_node).unwrap().size.width, 800.0);
assert_eq!(tree.layout(root_node).unwrap().size.height, 600.0);
assert_eq!(tree.layout(header_node).unwrap().size.width, 800.0);
assert_eq!(tree.layout(header_node).unwrap().size.height, 100.0);
assert_eq!(tree.layout(body_node).unwrap().size.width, 800.0);
assert_eq!(tree.layout(body_node).unwrap().size.height, 500.0); // This value was not set explicitly, but was computed by Taffy

Bindings to other languages

Learning Resources

Taffy implements the Flexbox and CSS Grid specifications faithfully, so documentation designed for the web should translate cleanly to Taffy's implementation. For reference documentation on individual style properties we recommend the MDN documentation (for example this page on the width property). Such pages can usually be found by searching for "MDN property-name" using a search engine.

If you are interested in guide-level documentation on CSS layout, then we recommend the following resources:

Flexbox

  • Flexbox Froggy. This is an interactive tutorial/game that allows you to learn the essential parts of Flexbox in a fun engaging way.
  • A Complete Guide To Flexbox by CSS Tricks. This is detailed guide with illustrations and comprehensive written explanation of the different Flexbox properties and how they work.

CSS Grid

  • CSS Grid Garden. This is an interactive tutorial/game that allows you to learn the essential parts of CSS Grid in a fun engaging way.
  • A Complete Guide To CSS Grid by CSS Tricks. This is detailed guide with illustrations and comprehensive written explanation of the different CSS Grid properties and how they work.

Benchmarks (vs. Yoga)

  • Run on a 2021 MacBook Pro with M1 Pro processor using criterion
  • The benchmarks measure layout computation only. They do not measure tree creation.
  • Yoga benchmarks were run via the yoga crate (Rust bindings)
  • Most popular websites seem to have between 3,000 and 10,000 nodes (although they also require text layout, which neither yoga nor taffy implement).

Note that the table below contains multiple different units (milliseconds vs. microseconds)

Benchmark Node Count Depth Yoga (ba27f9d) Taffy (71027a8)
yoga 'huge nested' 1,000 3 364.60 µs 329.04 µs
yoga 'huge nested' 10,000 4 4.1988 ms 4.3486 ms
yoga 'huge nested' 100,000 5 45.804 ms 38.559 ms
big trees (wide) 1,000 1 737.77 µs 505.99 µs
big trees (wide) 10,000 1 7.1007 ms 8.3395 ms
big trees (wide) 100,000 1 135.78 ms 247.42 ms
big trees (deep) 4,000 12 2.2333 ms 1.7400 ms
big trees (deep) 10,000 14 5.9477 ms 4.4445 ms
big trees (deep) 100,000 17 76.755 ms 63.778 ms
super deep 1,000 1,000 555.32 µs 472.85 µs

Contributions

Contributions welcome: if you'd like to use, improve or build taffy, feel free to join the conversation, open an issue or submit a PR. If you have questions about how to use taffy, open a discussion so we can answer your questions in a way that others can find.

Dependencies

~270–580KB
~11K SLoC