calculateFrameSize method
Implementation
Size calculateFrameSize(Size screenSize) {
return Size(
screenSize.width +
innerBodyInsets.horizontal +
screenInsets.horizontal +
defaultBodyInsets * 2,
screenSize.height +
innerBodyInsets.vertical +
screenInsets.vertical +
bodyHeight +
bodyPadHeight,
);
}