Skip to content

Latest commit

 

History

History
51 lines (29 loc) · 1.11 KB

README.md

File metadata and controls

51 lines (29 loc) · 1.11 KB

rect_getter

A widget provide a simple way to get child's rectangle information after rendered.

Usage

To use this plugin, add rect_getter as a dependency in your pubspec.yaml file.

Example

// Import package
import 'package:rect_getter/rect_getter.dart';

// Instantiate it

var globalKey = RectGetter.createGlobalKey();
var rectGetter = RectGetter(
    key: globalKey,
    child: _child,
);

or

var rectGetter = RectGetter.defaultKey(
    child: _child,
);


// and add it to your layout .

// then you can get rect by

Rect rect = rectGetter.getRect();

or

Rect rect = RectGetter.getRectFromKey(globalKey);

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.