v1.0.0
widget_size
一個在構建並附加到組件樹後計算其大小的組件
38喜歡 892近 30 天下載150Pub 分數
AndroidiOSWebmacOSWindowsLinux
一個在構建並附加到組件樹後計算其大小的組件
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.0以下為英文專案原文快照,最新內容請造訪 GitHub。
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
To use this plugin, add widget_size as a dependency in your pubspec.yaml file.
dependencies:
widget_size: ^lastVersion
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,
),
)