Stack constructor
Stack({
- AlignmentGeometry alignment = Alignment.topLeft,
- StackFit fit = StackFit.loose,
- Overflow overflow = Overflow.clip,
- List<
Widget> children = const <Widget>[],
Implementation
Stack({
this.alignment = Alignment.topLeft,
this.fit = StackFit.loose,
this.overflow = Overflow.clip,
List<Widget> children = const <Widget>[],
}) : super(children: children);