h60 method
Creates a SizedBox widget with a specific height of 60% of the MediaQuery height.
Example:
SomeWidget().h60(context)
Implementation
Widget h60(BuildContext context, {Key? key}) => SizedBox(
key: key,
height: context.screenHeightInPercentage * 60,
child: this,
);