v1.0.0
measured_size
런타임에 자식의 크기를 계산하는 Flutter 위젯입니다.
40좋아요 1.5천30일 다운로드140Pub 점수
AndroidiOSWebmacOSWindowsLinux
런타임에 자식의 크기를 계산하는 Flutter 위젯입니다.
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A flutter widget that calculates the size of it's child in runtime.
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.
https://raw.githubusercontent.com/ayham95/Measured-Size/HEAD/example.gif
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