Stack constructor

const Stack({
  1. List<Widget> children = const <Widget>[],
  2. AlignmentGeometry alignment = Alignment.topLeft,
  3. StackFit fit = StackFit.loose,
})

Stack API.

Implementation

const Stack({
  this.children = const <Widget>[],
  this.alignment = Alignment.topLeft,
  this.fit = StackFit.loose,
});