1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#![warn(missing_docs)]

/*!
A library for straight-forward UI layout.

Dependency free & framework-agnostic. Backer can be used in an index-based layout approach or with inline drawing code.

_This library **only** implements layout & could be integrated with a range of UI crates._

# Quick Start
See [`Layout`]
*/

mod anynode;
mod clone;
mod constraints;
mod debug;
mod drawable;
mod layout;
mod modifiers;

pub use layout::{Layout, Node};

/// Structs involved in layout definitions
pub mod models;

/// Layout core node construction
pub mod nodes;