use ;
/// Direction for flex layout of child nodes.
///
/// This enum maps to CSS flexbox `flex-direction` values and determines
/// how child nodes are arranged within their parent container.
///
/// # YAML values
///
/// * `"row"`: Items are placed left to right.
/// * `"row_reverse"`: Items are placed right to left.
/// * `"column"`: Items are placed top to bottom.
/// * `"column_reverse"`: Items are placed bottom to top.