whTwoThird method

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

SizedBox widget with two-third or 66.67% width & height of the MediaQuery width & height

Implementation

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