FLUTTER ECOSYSTEM

javaherisaber/widget_size

A widget to calculate it's size after being built and attached to a widget tree

widget_size project cover
Stars
6
Forks
0
Last push (UTC)
Oct 9, 2022
Project status
Active
Mahdi Javaheri GitHub avatar
GITHUB User

Mahdi Javaheri ↗

Software Engineer

Yerevan, Armenia
LanguagesDartHTMLSwiftKotlinObjective-C

Packages published by this repository

Dependencies used

Dependency list 3 items
  • flutter{"sdk":"flutter"}
  • flutter_testDevelopment{"sdk":"flutter"}
  • flutter_lintsDevelopment^1.0.0

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

widget_size

pub package

A widget to calculate it's size after being built and attached to a widget tree

https://raw.githubusercontent.com/javaherisaber/widget_size/HEAD/demo.gif

Usage

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

dependencies:
  widget_size: ^lastVersion

Example

double _yourHeight = 50;
double _yourWidth = 50;

WidgetSize(
  onChange: (Size size) {
    // your Widget size available here
    _yourHeight = size.height;
    _yourWidth = size.width;
  },
  child: Container(
    height: _yourHeight,
    width: _yourWidth,
    color: Theme.of(context).primaryColor,
  ),
)