whHalf method
Implementation
Widget whHalf(BuildContext context, {Key? key}) => SizedBox(
key: key,
width: context.screenWidthInPercentage * 50,
height: context.screenHeightInPercentage * 50,
child: this,
);
Widget whHalf(BuildContext context, {Key? key}) => SizedBox(
key: key,
width: context.screenWidthInPercentage * 50,
height: context.screenHeightInPercentage * 50,
child: this,
);