wTwoThird method

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

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

Implementation

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