import 'package:flutter/src/material/constants.dart';
/// * The Material spec on touch targets at .
const double kMinInteractiveDimension = 48.0;
/// The height of the toolbar component of the [AppBar].
const double kToolbarHeight = 56.0;
/// The height of the bottom navigation bar.
const double kBottomNavigationBarHeight = 56.0;
Flutter获取Widget位置信息和状态栏、AppBar高度等
发文时间:2022年04月18日 11:02:41 编辑:Aaron 标签:widget位置获取的方式 591
获取widget的xy值时,若存在appBar则这个偏移值会包含状态栏和AppBar的高度
1、获取手机状态栏的高度
2、获取AppBar的高度
3、获取widget的XY值信息,y值信息包含状态栏和AppBar的高度
重点在于要给widget加上GlobalKey(关于key可以看我之前写的“Flutter中Key的原理及使用 LocalKey”),具体代码如下
4、获取widget的宽高 width Height
若无特殊说明,此文章为博主原创。
写稿不易,如需转载,请注明出处: https://www.aaroner.cn/art/56.html