widget_finder 0.1.1 copy "widget_finder: ^0.1.1" to clipboard
widget_finder: ^0.1.1 copied to clipboard

widget_finder makes it easy to find the position and size of the widget.

widget_finder #

Easily find position and size of widget.

Getting Started #

Add kpostal to your pubspec.yaml file:

dependencies:
  widget_finder:

Example #

import 'package:widget_finder/widget_finder.dart';

// Create GlobalKey
final key = GlobalKey();

// Create Widget using above GlobalKey
Container(
    key: key,
    child ...
),

// Find!
Offset topLeftOffset = WidgetFinder.of(key).topLeft; // position of topLeft point
Offset centerOffset = WidgetFinder.of(key).center; // position of center point
Size size = WidgetFinder.of(key).size; // size of widget
8
likes
140
pub points
57%
popularity

Publisher

verified publishertykan.dev

widget_finder makes it easy to find the position and size of the widget.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_web_plugins

More

Packages that depend on widget_finder