aStack method

Widget aStack({
  1. Key? key,
  2. Clip clipBehavior = Clip.none,
  3. OverflowBarAlignment overflowAlignment = OverflowBarAlignment.start,
  4. VerticalDirection overflowDirection = VerticalDirection.down,
  5. double overflowSpacing = 0.0,
  6. double spacing = 0.0,
  7. TextDirection? textDirection,
})

Extension for using OverflowBar directly with list of widgets

Implementation

Widget aStack(
        {Key? key,
        Clip clipBehavior = Clip.none,
        OverflowBarAlignment overflowAlignment = OverflowBarAlignment.start,
        VerticalDirection overflowDirection = VerticalDirection.down,
        double overflowSpacing = 0.0,
        double spacing = 0.0,
        TextDirection? textDirection}) =>
    AStack(
      key: key,
      clipBehavior: clipBehavior,
      overflowAlignment: overflowAlignment,
      overflowDirection: overflowDirection,
      overflowSpacing: overflowSpacing,
      spacing: spacing,
      textDirection: textDirection,
      children: this,
    );