wOneThird method

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

SizedBox widget with one-third or 33.33% width of the MediaQuery width

Implementation

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