PositionedDirectional constructor

const PositionedDirectional(
  1. {Key? key,
  2. double? start,
  3. double? top,
  4. double? end,
  5. double? bottom,
  6. double? width,
  7. double? height,
  8. required Widget child}
)

Creates a widget that controls where a child of a Stack is positioned.

Only two out of the three horizontal values (start, end, width), and only two out of the three vertical values (top, bottom, height), can be set. In each case, at least one of the three must be null.

See also:

Implementation

const PositionedDirectional({
  super.key,
  this.start,
  this.top,
  this.end,
  this.bottom,
  this.width,
  this.height,
  required this.child,
});