Flow.stack constructor

const Flow.stack(
  1. Iterable<Widget> children, {
  2. Key? key,
  3. FlowType type = FlowType.stack,
})

Creates an overlay stack layout using FlowType.stack.

This alias for Flow.through overlays children for complex layering, integrating with ArcaneTheme for depth effects in CardSection or GlowCard.

Implementation

const Flow.stack(
  this.children, {
  super.key,
  this.type = FlowType.stack,
});