positionFromRelativeRect method

Widget positionFromRelativeRect(
  1. RelativeRect rect
)

Wraps this widget with a Positioned.fromRelativeRect widget.

Implementation

Widget positionFromRelativeRect(RelativeRect rect) =>
    Positioned.fromRelativeRect(
      rect: rect,
      child: this,
    );