calculateFrameSize method
Implementation
Size calculateFrameSize(Size screenSize) {
return Size(
screenSize.width + innerBodyInsets.horizontal + screenInsets.horizontal,
screenSize.height +
innerBodyInsets.vertical +
screenInsets.vertical +
defaultFootSize.height,
);
}