FlexDirection
Namespace: BlazorNative.Components
Which way a flex container lays its children out
(flexDirection). The layout engine's default is Column, which
is why a container you have not styled stacks its children
vertically.
public enum FlexDirection
Inheritance Object → ValueType → Enum → FlexDirection
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields
| Name | Value | Description |
|---|---|---|
| Row | 0 | "row" |
| Column | 1 | "column" — Yoga's default. |
| RowReverse | 2 | "row-reverse" |
| ColumnReverse | 3 | "column-reverse" |