getAreaOfChildOffsetY static method
获取弹幕场景基于子组件高度的偏移量。为了居中展示
Implementation
static double getAreaOfChildOffsetY({Size? textSize}) {
Size textSize0 =
textSize ?? FlutterDanmakuUtils.getDanmakuBulletSizeByText('s');
return (FlutterDanmakuConfig.areaSize.height % textSize0.height) / 2;
}