whThreeForth method

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

SizedBox widget with three-forth or 75% width & height of the MediaQuery width & height

Implementation

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