measured_size 1.0.0 copy "measured_size: ^1.0.0" to clipboard
measured_size: ^1.0.0 copied to clipboard

A flutter widget that calculates the size of it's child in runtime.

measured_size #

A flutter widget that calculates the size of it's child in runtime.

Getting Started #

MeasuredSize Calculated the size of it's child in runtime. All you have to do is to wrap your widget with MeasuredSize and listen to size changes.

Usage #

Complete example

MeasuredSize(
              onChange: (Size size) {
                setState(() {
                  print(size);
                });
              },
              child: Text(
                '$_counter',
                style: Theme.of(context).textTheme.headline4,
              ),
            );

onChange will be called when the [Size] changes.

onChange will return the value ONLY once if it didn't change, and it will NOT return a value if it's equals to Size.zero

38
likes
120
pub points
92%
popularity

Publisher

unverified uploader

A flutter widget that calculates the size of it's child in runtime.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on measured_size