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
38
39
40
41
42
43
//! Alignment enumerations for flex-style layout axes.
/// How children are distributed along the *main* axis of a flex container.
///
/// The main axis of a [`Column`](crate::widgets::column::Column) is vertical;
/// for a [`Row`](crate::widgets::row::Row) it is horizontal.
/// How children are aligned on the *cross* axis of a flex container.
///
/// The cross axis of a [`Column`](crate::widgets::column::Column) is horizontal;
/// for a [`Row`](crate::widgets::row::Row) it is vertical.