interface FlexProps {
    align?: ResponsiveValue<AlignItems>;
    basis?: ResponsiveValue<FlexBasis<Length>>;
    direction?: ResponsiveValue<FlexDirection>;
    grow?: ResponsiveValue<FlexGrow>;
    justify?: ResponsiveValue<JustifyContent>;
    shrink?: ResponsiveValue<FlexShrink>;
    wrap?: ResponsiveValue<FlexWrap>;
}

Properties

align?: ResponsiveValue<AlignItems>

Shorthand for alignItems style prop

basis?: ResponsiveValue<FlexBasis<Length>>

Shorthand for flexBasis style prop

direction?: ResponsiveValue<FlexDirection>

Shorthand for flexDirection style prop

Default

"row"
grow?: ResponsiveValue<FlexGrow>

Shorthand for flexGrow style prop

justify?: ResponsiveValue<JustifyContent>

Shorthand for justifyContent style prop

shrink?: ResponsiveValue<FlexShrink>

Shorthand for flexShrink style prop

wrap?: ResponsiveValue<FlexWrap>

Shorthand for flexWrap style prop

Generated using TypeDoc