resize_observer

Creator: coderz1093

Last updated:

0 purchases

resize_observer Image
resize_observer Images
Add to Cart

Description:

resize observer

resize_observer #
A Dart wrapper for the Resize Observer API that uses JS interop and a single observer and convenient callback.
(This library is intended for web/browser use, not Flutter)
API #
// bool if the browser supports the Resize Observer API
ResizeObserver.supported

// Start observing an element for resizes
ResizeObserver.observe(Element? element, ResizeObserverCallback callback);

// Stop observing resizes to [element]
ResizeObserver.unobserve(Element? element);


// Callbacks must match the following signature
typedef void ResizeObserverCallback(Element element, num x, num y, num width, num height, num top, num bottom, num left, num right);
copied to clipboard
See the example for an example of how to use it.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator