wFourFifth method

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

SizedBox widget with four-fifth or 80% width of the MediaQuery width

Implementation

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