wh0 method

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

SizedBox widget with 0% width & height of the MediaQuery width & height

Implementation

Widget wh0(BuildContext context, {Key? key}) => SizedBox(
      key: key,
      width: context.percentWidth * 0,
      height: context.percentHeight * 0,
      child: this,
    );