Positioned constructor

const Positioned({
  1. int? left,
  2. int? top,
  3. int? right,
  4. int? bottom,
  5. int? width,
  6. int? height,
  7. required Widget child,
})

Creates a positioned widget to place a child inside a Stack.

Implementation

const Positioned({
  this.left,
  this.top,
  this.right,
  this.bottom,
  this.width,
  this.height,
  required this.child,
});