wh60 method
SizedBox widget with 60% width
& height
of the MediaQuery width & height
Implementation
Widget wh60(BuildContext context, {Key? key}) => SizedBox(
key: key,
width: context.percentWidth * 60,
height: context.percentHeight * 60,
child: this,
);