ModulaStack constructor

const ModulaStack({
  1. required List<Widget> children,
  2. Key? key,
  3. AlignmentGeometry alignment = Alignment.center,
  4. StackFit fit = StackFit.loose,
  5. Clip clipBehavior = Clip.hardEdge,
  6. TextDirection? textDirection,
})

Implementation

const ModulaStack({
  required this.children,
  super.key,
  this.alignment = Alignment.center,
  this.fit = StackFit.loose,
  this.clipBehavior = Clip.hardEdge,
  this.textDirection,
});