whFull method

Widget whFull(
  1. BuildContext context, {
  2. Key? key,
})

SizedBox widget with full width & height of the MediaQuery width & height

Implementation

Widget whFull(BuildContext context, {Key? key}) => SizedBox(
      key: key,
      width: context.screenWidth,
      height: context.screenHeight,
      child: this,
    );