renderbox flutter code example

Example 1: get position of a widget in screen flutter

extension GlobalKeyEx on GlobalKey {
  Rect get globalPaintBounds {
    final renderObject = currentContext?.findRenderObject();
    var translation = renderObject?.getTransformTo(null)?.getTranslation();
    if (translation != null && renderObject.paintBounds != null) {
      return renderObject.paintBounds
          .shift(Offset(translation.x, translation.y));
    } else {
      return null;
    }
  }
}

Example 2: get position of a widget in screen flutter

@override  void initState() {    WidgetsBinding.instance.addPostFrameCallback(_afterLayout);    super.initState();  } _afterLayout(_) {    _getSizes();    _getPositions();  }

Tags:

Misc Example