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
29
30
31
32
33
34
35
36
37
//! Declarative macros for building element trees.
/// Builds a `Vec<Element>` from heterogeneous widget builders.
///
/// Each item must implement [`Into`]`<`[`Element`](crate::element::Element)`>`.
/// Use with [`.children`](crate::element::builders::Column::children) on
/// [`Column`](crate::element::builders::Column),
/// [`Row`](crate::element::builders::Row), or [`View`](crate::element::builders::View).
///
/// # Examples
///
/// ```
/// use lemon::{children, Column, Row, Text};
/// use lemon::element::builders::Button;
///
/// let _tree = Column::new()
/// .children(children![
/// Text::new("Title").font_size(22.0),
/// Row::new().children(children![
/// Button::new("OK"),
/// Button::new("Cancel"),
/// ]),
/// ])
/// .into_element();
/// ```