getY static method
Implementation
static double getY(BuildContext buildContext) {
final RenderBox box = buildContext.findRenderObject() as RenderBox;
final offset = box.localToGlobal(Offset.zero);
return offset.dy;
}
static double getY(BuildContext buildContext) {
final RenderBox box = buildContext.findRenderObject() as RenderBox;
final offset = box.localToGlobal(Offset.zero);
return offset.dy;
}